diff --git a/.gitignore b/.gitignore
index 08b752b6e5..737ac50c3e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -35,3 +35,5 @@ jakartaeetck-bundles/
/tck-env.cfg
.DS_Store
wip-find.txt
+
+core-profile-tck/examples/wf-core-tck-runner
diff --git a/.gitmodules b/.gitmodules
index 29e2a5545a..e69de29bb2 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -1,3 +0,0 @@
-[submodule "core-profile-tck/examples/wf-core-tck-runner"]
- path = core-profile-tck/examples/wf-core-tck-runner
- url = https://github.com/wildfly/wildfly-tck-runners
diff --git a/appclient/pom.xml b/appclient/pom.xml
index fa2399afbb..032a1ddcb4 100644
--- a/appclient/pom.xml
+++ b/appclient/pom.xml
@@ -47,7 +47,7 @@
${project.groupId}
- assembly
+ assembly-tck
jakarta.ejb
diff --git a/arquillian/appclient/src/main/java/tck/arquillian/protocol/appclient/AppClientCmd.java b/arquillian/appclient/src/main/java/tck/arquillian/protocol/appclient/AppClientCmd.java
index a1a8d20cd8..cb286f8183 100644
--- a/arquillian/appclient/src/main/java/tck/arquillian/protocol/appclient/AppClientCmd.java
+++ b/arquillian/appclient/src/main/java/tck/arquillian/protocol/appclient/AppClientCmd.java
@@ -27,11 +27,9 @@
import java.util.logging.Logger;
/**
- * A base class that uses the {@link Runtime#exec(String[], String[], File)} method to launch a Jakarta EE appclient.
- * Vendors override this class to provide implementations of:
- * {@link #getAppClientCommand()} - the command line expected to invoke your Application Client main
- * {@link #getAppClientEnv()} - optional environment variables that should be provided when running the Application client
- * {@link #getAppClientDir()} - optional directory from which the appclient process should run
+ * A class that uses the {@link Runtime#exec(String[], String[], File)} method to launch a Jakarta EE appclient.
+ * Vendors configure the appclient via the {@link AppClientProtocolConfiguration} class using the
+ * protocol element of the arquillian.xml file.
*/
public class AppClientCmd {
private static final Logger LOGGER = Logger.getLogger(AppClientCmd.class.getName());
@@ -47,6 +45,7 @@ public class AppClientCmd {
private String[] clientEnvp = null;
private File clientDir = null;
private String clientEarDir;
+ private String clientEarLibClasspath;
private CompletableFuture onExit;
@@ -59,6 +58,7 @@ public AppClientCmd(AppClientProtocolConfiguration config) {
clientEnvp = config.clientEnvAsArray();
clientDir = config.clientDirAsFile();
clientEarDir = config.getClientEarDir();
+ clientEarLibClasspath = config.clientEarLibClasspath();
}
public boolean waitForExit(long timeout, TimeUnit units) throws InterruptedException {
@@ -114,7 +114,6 @@ public void run(String vehicleArchiveName, String clientAppArchive, String... ad
ArrayList cmdList = new ArrayList();
-
// Need to replace any property refs on command line
File earDir = new File(clientEarDir);
if(earDir.isAbsolute()) {
@@ -135,21 +134,32 @@ public void run(String vehicleArchiveName, String clientAppArchive, String... ad
arg = arg.replaceAll("\\$\\{clientAppArchive}", clientAppArchive);
cmdLine[n] = arg;
}
-
+ if(arg.contains("${clientEarLibClasspath}")) {
+ arg = arg.replaceAll("\\$\\{clientEarLibClasspath}", clientEarLibClasspath);
+ cmdLine[n] = arg;
+ }
+ }
+ // Replace any ${clientEarLibClasspath} in the client ENV
+ for(int n = 0; n < clientEnvp.length; n++) {
+ String env = clientEnvp[n];
+ if(env.contains("${clientEarLibClasspath}")) {
+ String env2 = env.replaceAll("\\$\\{clientEarLibClasspath}", clientEarLibClasspath);
+ LOGGER.info("Replaced clientEarLibClasspath in "+env2);
+ clientEnvp[n] = env2;
+ }
}
+ // Split the command line into individual arguments based on spaces
for (int n = 0; n < cmdLine.length; n ++) {
- String arg = cmdLine[n];
cmdList.addAll(Arrays.asList(cmdLine[n].split(" ")));
}
+ // Add any additional args
if (additionalArgs != null) {
String[] newCmdLine = new String[cmdLine.length + additionalArgs.length];
System.arraycopy(cmdLine, 0, newCmdLine, 0, cmdLine.length);
System.arraycopy(additionalArgs, 0, newCmdLine, cmdLine.length, additionalArgs.length);
- cmdLine = newCmdLine;
cmdList.addAll(Arrays.asList(additionalArgs));
-
}
appClientProcess = Runtime.getRuntime().exec(cmdList.toArray(new String[0]), clientEnvp, clientDir);
diff --git a/arquillian/appclient/src/main/java/tck/arquillian/protocol/appclient/AppClientProtocolConfiguration.java b/arquillian/appclient/src/main/java/tck/arquillian/protocol/appclient/AppClientProtocolConfiguration.java
index e101026abb..dfd88a3c4d 100644
--- a/arquillian/appclient/src/main/java/tck/arquillian/protocol/appclient/AppClientProtocolConfiguration.java
+++ b/arquillian/appclient/src/main/java/tck/arquillian/protocol/appclient/AppClientProtocolConfiguration.java
@@ -1,5 +1,6 @@
package tck.arquillian.protocol.appclient;
+import org.jboss.arquillian.container.spi.client.deployment.Deployment;
import org.jboss.arquillian.container.test.spi.client.protocol.ProtocolConfiguration;
import tck.arquillian.protocol.common.ProtocolCommonConfig;
@@ -117,7 +118,12 @@ public String getClientCmdLineString() {
* the parsed command line array elements are trimmed of leading and trailing whitespace.
* The command line should be filtered against the ts.jte file if it contains any property references. In addition
* to ts.jte property references, the command line can contain ${clientEarDir} which will be replaced with the
- * #clientEarDir value. Any ${vehicleArchiveName} ref will be replaced with the vehicleArchiveName passed to the
+ * #clientEarDir value. Any ${vehicleArchiveName} ref will be replaced with the vehicle archive name extracted by
+ * {@link tck.arquillian.protocol.common.TsTestPropsBuilder#vehicleArchiveName(Deployment)}.
+ * Any ${clientAppArchive} ref will be replaced with the clientAppArchive extracted by the
+ * {@link AppClientDeploymentPackager} processing of the target appclient ear.
+ * Any ${clientEarLibClasspath} ref will be replaced with the classpath of the client ear lib directory if
+ * {@link #unpackClientEar} is true and the clientEarDir/lib directory exists.
* @param clientCmdLineString
*/
public void setClientCmdLineString(String clientCmdLineString) {
@@ -146,6 +152,12 @@ public void setClientDir(String clientDir) {
public String getClientEarDir() {
return clientEarDir;
}
+ /**
+ * Set the directory to extract the final appclient ear test artifact. The default is "target/appclient".
+ * Any ${clientEarDir} ref in the {@link #clientCmdLineString} will be replaced with the clientEarDir
+ * value.
+ * @param clientEarDir
+ */
public void setClientEarDir(String clientEarDir) {
this.clientEarDir = clientEarDir;
}
@@ -188,6 +200,26 @@ public File clientDirAsFile() {
return dir;
}
+ /**
+ * If #unpackClientEar is true, and clientEarDir/lib exists, then this method returns the contents
+ * of the clientEarDir/lib as a classpath string
+ * @return a classpath string for the client ear lib directory
+ */
+ public String clientEarLibClasspath() {
+ StringBuilder cp = new StringBuilder();
+ File libDir = new File(clientEarDir, "lib");
+ if (unpackClientEar && libDir.exists()) {
+ File[] jars = libDir.listFiles();
+ for (File jar : jars) {
+ if (!cp.isEmpty()) {
+ cp.append(File.pathSeparator);
+ }
+ cp.append(jar.getAbsolutePath());
+ }
+ }
+ return cp.toString();
+ }
+
/**
* Parse the clientCmdLineString into an array of strings using the cmdLineArgSeparator. This calls String#split on the
* clientCmdLineString and then trims each element of the resulting array.
diff --git a/arquillian/common/src/main/java/tck/arquillian/protocol/common/TsTestPropsBuilder.java b/arquillian/common/src/main/java/tck/arquillian/protocol/common/TsTestPropsBuilder.java
index c072f50931..1f370090bc 100644
--- a/arquillian/common/src/main/java/tck/arquillian/protocol/common/TsTestPropsBuilder.java
+++ b/arquillian/common/src/main/java/tck/arquillian/protocol/common/TsTestPropsBuilder.java
@@ -19,6 +19,8 @@ public class TsTestPropsBuilder {
// Property names passed from the ts.jte file to the tstest.jte file
// Parsed from the test @class.setup_props: values + additional seen to be used by harness
static String[] tsJtePropNames = {
+ "s1as",
+ "s1as.modules",
"Driver",
"authpassword",
"authuser",
@@ -102,7 +104,7 @@ public class TsTestPropsBuilder {
/**
* Get the deployment vehicle archive name from the deployment archive. This needs to be a vehicle deployment
- * for the result to be value.
+ * for the result to be valid.
* @param deployment - current test deployment
* @return base vehicle archive name
*/
diff --git a/assembly/pom.xml b/assembly/pom.xml
index b0d5ebb89c..96d6fb2817 100644
--- a/assembly/pom.xml
+++ b/assembly/pom.xml
@@ -26,12 +26,31 @@
11.0.0-SNAPSHOT
- assembly
+ assembly-tck
jar
- ASSEMBLY
+ assembly-tck
ASSEMBLY
+
+ 1.9.1.Final
+ 11.0.0-M2
+ 5.10.2
+ ${project.version}
+
+
+
+
+
+ org.junit
+ junit-bom
+ ${junit.jupiter.version}
+ pom
+ import
+
+
+
+
${project.groupId}
@@ -49,21 +68,57 @@
jakarta.mail
jakarta.mail-api
+
+ org.junit.jupiter
+ junit-jupiter
+ ${junit.jupiter.version}
+
+
+ jakarta.tck.arquillian
+ arquillian-protocol-appclient
+ ${version.jakarta.tck.arquillian}
+
+
+ jakarta.tck.arquillian
+ arquillian-protocol-common
+ ${version.jakarta.tck.arquillian}
+
+
+ jakarta.tck.arquillian
+ arquillian-protocol-javatest
+ ${version.jakarta.tck.arquillian}
+
+
+ jakarta.tck.arquillian
+ arquillian-protocol-lib
+ ${version.jakarta.tck.arquillian}
+
+
+ jakarta.tck.arquillian
+ tck-porting-lib
+ ${version.jakarta.tck.arquillian}
+
+
+ org.junit.jupiter
+ junit-jupiter
+ ${junit.jupiter.version}
+
+
+ org.jboss.arquillian.junit
+ arquillian-junit-core
+ ${arquillian.junit}
+
+
+ org.jboss.arquillian.junit5
+ arquillian-junit5-container
+
+
+ org.jboss.arquillian.junit5
+ arquillian-junit5-core
+
+
-
-
-
- src/main/java
-
- **/*.xml
- **/test.jsp
-
-
- **/build.xml
-
-
-
@@ -74,4 +129,5 @@
+
diff --git a/assembly/src/main/java/com/sun/ts/tests/assembly/altDD/Client.java b/assembly/src/main/java/com/sun/ts/tests/assembly/altDD/Client.java
index c89ef6e786..8eb5109b5f 100644
--- a/assembly/src/main/java/com/sun/ts/tests/assembly/altDD/Client.java
+++ b/assembly/src/main/java/com/sun/ts/tests/assembly/altDD/Client.java
@@ -27,6 +27,36 @@
import com.sun.ts.lib.util.TSNamingContext;
import com.sun.ts.lib.util.TestUtil;
+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.asset.UrlAsset;
+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;
+import org.junit.jupiter.api.Tag;
+import org.junit.jupiter.api.Test;
+import org.junit.jupiter.api.extension.ExtendWith;
+import tck.arquillian.porting.lib.spi.TestArchiveProcessor;
+import tck.arquillian.protocol.common.TargetVehicle;
+import org.junit.jupiter.api.AfterEach;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.TestInfo;
+
+
+import java.lang.System.Logger;
+
+@Tag("assembly")
+@Tag("platform")
+@Tag("tck-appclient")
+@ExtendWith(ArquillianExtension.class)
public class Client extends EETest {
private static final String prefix = "java:comp/env/";
@@ -58,15 +88,86 @@ public void setup(String[] args, Properties props) throws Fault {
try {
this.props = props;
- logTrace("[Client] Getting Naming Context...");
+ logMsg("[Client] Getting Naming Context...");
nctx = new TSNamingContext();
- logTrace("[Client] Setup completed!");
+ logMsg("[Client] Setup completed!");
} catch (Exception e) {
logErr("[Client] Failed to obtain Naming Context:" + e);
throw new Fault("[Client] Setup failed:" + e, e);
}
}
+
+ static final String VEHICLE_ARCHIVE = "assembly_altDD_client";
+
+ @TargetsContainer("tck-appclient")
+ @OverProtocol("appclient")
+ @Deployment(name = VEHICLE_ARCHIVE, order = 2)
+ public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource TestArchiveProcessor archiveProcessor) {
+ JavaArchive assembly_altDD_client = ShrinkWrap.create(JavaArchive.class, "assembly_altDD_client.jar");
+ assembly_altDD_client.addClasses(
+ com.sun.ts.lib.harness.EETest.Fault.class,
+ com.sun.ts.lib.harness.EETest.class,
+ com.sun.ts.lib.harness.EETest.SetupException.class,
+ com.sun.ts.tests.assembly.altDD.Client.class,
+ com.sun.ts.tests.assembly.altDD.PainterBean.class);
+ URL resURL = Client.class.getResource("assembly_altDD_client.xml");
+ if (resURL != null) {
+ assembly_altDD_client.addAsManifestResource(resURL, "application-client.xml");
+ }
+ assembly_altDD_client.addAsManifestResource(new StringAsset("Main-Class: " + Client.class.getName() + "\n"),
+ "MANIFEST.MF");
+
+ resURL = Client.class.getResource("assembly_altDD_client.jar.sun-application-client.xml");
+ if (resURL != null) {
+ assembly_altDD_client.addAsManifestResource(resURL, "sun-application-client.xml");
+ }
+ archiveProcessor.processClientArchive(assembly_altDD_client, Client.class, resURL);
+
+ JavaArchive assembly_altDD_ejb = ShrinkWrap.create(JavaArchive.class, "assembly_altDD_ejb.jar");
+ assembly_altDD_ejb.addClasses(
+ com.sun.ts.tests.common.ejb.wrappers.Stateless3xWrapper.class,
+ com.sun.ts.lib.util.RemoteLoggingInitException.class,
+ com.sun.ts.tests.assembly.util.shared.ejbref.common.ReferencedBeanCode.class,
+ com.sun.ts.tests.assembly.altDD.Client.class,
+ com.sun.ts.tests.assembly.altDD.PainterBean.class,
+ com.sun.ts.tests.assembly.altDD.PainterBeanEJB.class);
+ // The ejb-jar.xml descriptor
+ URL ejbResURL = Client.class.getResource("assembly_altDD_ejb.xml");
+ if (ejbResURL != null) {
+ assembly_altDD_ejb.addAsManifestResource(ejbResURL, "ejb-jar.xml");
+ }
+ ejbResURL = Client.class.getResource("assembly_altDD_ejb.jar.sun-ejb-jar.xml");
+ if (ejbResURL != null) {
+ assembly_altDD_ejb.addAsManifestResource(ejbResURL, "sun-ejb-jar.xml");
+ }
+ assembly_altDD_ejb.addAsManifestResource(new StringAsset("Main-Class: " + Client.class.getName() + "\n"),
+ "MANIFEST.MF");
+
+ archiveProcessor.processEjbArchive(assembly_altDD_ejb, Client.class, ejbResURL);
+
+
+ EnterpriseArchive assembly_altDD_ear = ShrinkWrap.create(EnterpriseArchive.class, "assembly_altDD.ear");
+ assembly_altDD_ear.addAsModule(assembly_altDD_client);
+ assembly_altDD_ear.addAsModule(assembly_altDD_ejb);
+
+ URL earResURL = Client.class.getResource("altDD_client.xml");
+ assembly_altDD_ear.add(new UrlAsset(earResURL), "altDD_client.xml");
+ earResURL = Client.class.getResource("altDD_ejb.xml");
+ assembly_altDD_ear.add(new UrlAsset(earResURL), "altDD_ejb.xml");
+
+ earResURL = Client.class.getResource("application.xml");
+ if (earResURL != null) {
+ assembly_altDD_ear.addAsManifestResource(earResURL, "application.xml");
+ }
+ assembly_altDD_ear.addAsManifestResource(new StringAsset("Main-Class: " + Client.class.getName() + "\n"),
+ "MANIFEST.MF");
+
+ archiveProcessor.processEarArchive(assembly_altDD_ear, Client.class, earResURL);
+
+ return assembly_altDD_ear;
+ }
+
/**
* @testName: testAppClient
*
@@ -96,12 +197,14 @@ public void setup(String[] args, Properties props) throws Fault {
* - The runtime value is 'France', validating the use of DD4
* at deployment time.
*/
+ @Test
public void testAppClient() throws Fault {
String entryValue;
boolean pass = false;
try {
logTrace("[Client] Looking up " + entryLookup);
+
entryValue = (String) nctx.lookup(entryLookup);
pass = entryValue.equals(entryNameRef);
@@ -163,6 +266,7 @@ public void testAppClient() throws Fault {
* - The returned value is 'Matisse', validating the use of
* DD3 at deployment time.
*/
+ @Test
public void testEJB() throws Fault {
PainterBean bean = null;
String nameValue;
@@ -172,6 +276,7 @@ public void testEJB() throws Fault {
logTrace("[Client] Looking up " + beanLookup);
bean = (PainterBean) nctx.lookup(beanLookup, PainterBean.class);
bean.createNamingContext();
+
bean.initLogging(props);
logTrace("[Client] Checking referenced EJB...");
diff --git a/assembly/src/main/java/com/sun/ts/tests/assembly/classpath/appclient/Client.java b/assembly/src/main/java/com/sun/ts/tests/assembly/classpath/appclient/Client.java
index f62660fa63..5293bfee72 100644
--- a/assembly/src/main/java/com/sun/ts/tests/assembly/classpath/appclient/Client.java
+++ b/assembly/src/main/java/com/sun/ts/tests/assembly/classpath/appclient/Client.java
@@ -32,13 +32,43 @@
import com.sun.ts.lib.util.TestUtil;
import com.sun.ts.tests.assembly.classpath.util.ClassPathUtil;
+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.asset.UrlAsset;
+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;
+import org.junit.jupiter.api.Tag;
+import org.junit.jupiter.api.Test;
+import org.junit.jupiter.api.extension.ExtendWith;
+import tck.arquillian.porting.lib.spi.TestArchiveProcessor;
+import tck.arquillian.protocol.common.TargetVehicle;
+import org.junit.jupiter.api.AfterEach;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.TestInfo;
+
+
+import java.lang.System.Logger;
+
+@Tag("assembly")
+@Tag("platform")
+@Tag("tck-appclient")
+@ExtendWith(ArquillianExtension.class)
public class Client extends EETest {
private TSNamingContext nctx = null;
private Properties props = null;
- public static void main(String[] args) {
+ public static void main(String[] args) throws Exception {
Client theTests = new Client();
Status s = theTests.run(args, System.out, System.err);
s.exit();
@@ -59,6 +89,68 @@ public void setup(String[] args, Properties p) throws Fault {
}
}
+ static final String VEHICLE_ARCHIVE = "assembly_classpath_appclient";
+
+ @TargetsContainer("tck-appclient")
+ @OverProtocol("appclient")
+ @Deployment(name = VEHICLE_ARCHIVE, order = 2)
+ public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource TestArchiveProcessor archiveProcessor) {
+
+ JavaArchive direct_classpath_util = ShrinkWrap.create(JavaArchive.class, "direct_classpath_util.jar");
+ direct_classpath_util.addClasses(com.sun.ts.tests.assembly.classpath.util.ClassPathUtil.class,
+ Client.class);
+ URL resURL = Client.class.getResource("/util/META-INF/ejb-jar.xml");
+ if (resURL != null) {
+ direct_classpath_util.addAsManifestResource(resURL, "ejb-jar.xml");
+ }
+ direct_classpath_util.addAsManifestResource(new StringAsset("Main-Class: " + Client.class.getName() + "\n"), "MANIFEST.MF");
+ // archiveProcessor.processEjbArchive(direct_classpath_util, Client.class, resURL);
+
+
+ JavaArchive indirect_classpath_util = ShrinkWrap.create(JavaArchive.class, "indirect_classpath_util.jar");
+ indirect_classpath_util.addClasses(com.sun.ts.tests.assembly.classpath.util.IndirectClassPathUtil.class,
+ Client.class);
+ resURL = Client.class.getResource("/util/META-INF/ejb-jar.xml");
+ if (resURL != null) {
+ indirect_classpath_util.addAsManifestResource(resURL, "ejb-jar.xml");
+ }
+ indirect_classpath_util.addAsManifestResource(new StringAsset("Main-Class: " + Client.class.getName() + "\n"), "MANIFEST.MF");
+ // archiveProcessor.processEjbArchive(indirect_classpath_util, Client.class, resURL);
+
+ JavaArchive assembly_classpath_appclient_client = ShrinkWrap.create(JavaArchive.class,
+ "assembly_classpath_appclient_client.jar");
+ assembly_classpath_appclient_client.addClasses(
+ com.sun.ts.lib.harness.EETest.Fault.class,
+ com.sun.ts.lib.harness.EETest.class,
+ com.sun.ts.lib.harness.EETest.SetupException.class,
+ com.sun.ts.tests.assembly.classpath.appclient.Client.class);
+ // The application-client.xml descriptor
+ resURL = Client.class.getResource("assembly_classpath_appclient_client.xml");
+ if (resURL != null) {
+ assembly_classpath_appclient_client.addAsManifestResource(resURL, "application-client.xml");
+ }
+ assembly_classpath_appclient_client
+ .addAsManifestResource(new StringAsset("Main-Class: " + Client.class.getName() + "\n" + "Class-Path: libs/direct_classpath_util.jar"+ "\n"), "MANIFEST.MF");
+ archiveProcessor.processClientArchive(assembly_classpath_appclient_client, Client.class, resURL);
+
+
+ EnterpriseArchive assembly_classpath_appclient_ear = ShrinkWrap.create(EnterpriseArchive.class,
+ "assembly_classpath_appclient.ear");
+ assembly_classpath_appclient_ear.addAsLibrary(direct_classpath_util);
+ assembly_classpath_appclient_ear.addAsLibrary(indirect_classpath_util);
+ assembly_classpath_appclient_ear.addAsModule(assembly_classpath_appclient_client);
+ assembly_classpath_appclient_ear.addAsModule(indirect_classpath_util);
+ assembly_classpath_appclient_ear.addAsModule(direct_classpath_util);
+
+ URL earResURL = Client.class.getResource("application.xml");
+ if (earResURL != null) {
+ assembly_classpath_appclient_ear.addAsManifestResource(earResURL, "application.xml");
+ }
+ archiveProcessor.processEarArchive(assembly_classpath_appclient_ear, Client.class, earResURL);
+
+ return assembly_classpath_appclient_ear;
+ }
+
/**
* @testName: testDirectLibrary
*
@@ -86,11 +178,12 @@ public void setup(String[] args, Properties p) throws Fault {
* logical classpath of the application client.
*
*/
+ @Test
public void testDirectLibrary() throws Fault {
ClassPathUtil util = null;
try {
- logTrace("Client: creating class instance...");
+ logMsg("Client: creating class instance...");
util = new ClassPathUtil();
util.testDirectLibrary();
} catch (Exception e) {
@@ -146,11 +239,12 @@ public void testDirectLibrary() throws Fault {
* the logical classpath of the application client.
*
*/
+ @Test
public void testIndirectLibrary() throws Fault {
ClassPathUtil util = null;
try {
- logTrace("Client: creating class instance...");
+ logMsg("Client: creating class instance...");
util = new ClassPathUtil();
util.testIndirectLibrary();
} catch (Exception e) {
diff --git a/assembly/src/main/java/com/sun/ts/tests/assembly/classpath/ejb/Client.java b/assembly/src/main/java/com/sun/ts/tests/assembly/classpath/ejb/Client.java
index 2f4d792340..0ce3228908 100644
--- a/assembly/src/main/java/com/sun/ts/tests/assembly/classpath/ejb/Client.java
+++ b/assembly/src/main/java/com/sun/ts/tests/assembly/classpath/ejb/Client.java
@@ -26,6 +26,36 @@
import com.sun.ts.lib.harness.EETest;
import com.sun.ts.lib.util.TSNamingContext;
+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.asset.UrlAsset;
+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;
+import org.junit.jupiter.api.Tag;
+import org.junit.jupiter.api.Test;
+import org.junit.jupiter.api.extension.ExtendWith;
+import tck.arquillian.porting.lib.spi.TestArchiveProcessor;
+import tck.arquillian.protocol.common.TargetVehicle;
+import org.junit.jupiter.api.AfterEach;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.TestInfo;
+
+
+import java.lang.System.Logger;
+
+@Tag("assembly")
+@Tag("platform")
+@Tag("tck-appclient")
+@ExtendWith(ArquillianExtension.class)
public class Client extends EETest {
/** JNDI Name we use to lookup the bean */
@@ -58,6 +88,98 @@ public void setup(String[] args, Properties p) throws Fault {
}
}
+
+ static final String VEHICLE_ARCHIVE = "assembly_classpath_ejb";
+
+ @TargetsContainer("tck-appclient")
+ @OverProtocol("appclient")
+ @Deployment(name = VEHICLE_ARCHIVE, order = 2)
+ public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource TestArchiveProcessor archiveProcessor) {
+
+ JavaArchive direct_classpath_util = ShrinkWrap.create(JavaArchive.class, "direct_classpath_util.jar");
+ direct_classpath_util.addClasses(com.sun.ts.tests.assembly.classpath.util.ClassPathUtil.class,
+ Client.class);
+ URL resURL = Client.class.getResource("/util/META-INF/ejb-jar.xml");
+ if (resURL != null) {
+ direct_classpath_util.addAsManifestResource(resURL, "ejb-jar.xml");
+ }
+ direct_classpath_util.addAsManifestResource(new StringAsset("Main-Class: " + Client.class.getName() + "\n"), "MANIFEST.MF");
+ // archiveProcessor.processEjbArchive(direct_classpath_util, Client.class, resURL);
+
+ JavaArchive indirect_classpath_util = ShrinkWrap.create(JavaArchive.class, "indirect_classpath_util.jar");
+ indirect_classpath_util.addClasses(com.sun.ts.tests.assembly.classpath.util.IndirectClassPathUtil.class,
+ Client.class);
+ resURL = Client.class.getResource("/util/META-INF/ejb-jar.xml");
+ if (resURL != null) {
+ indirect_classpath_util.addAsManifestResource(resURL, "ejb-jar.xml");
+ }
+ indirect_classpath_util.addAsManifestResource(new StringAsset("Main-Class: " + Client.class.getName() + "\n"), "MANIFEST.MF");
+ // archiveProcessor.processEjbArchive(indirect_classpath_util, Client.class, resURL);
+
+
+ JavaArchive assembly_classpath_ejb_client = ShrinkWrap.create(JavaArchive.class,
+ "assembly_classpath_ejb_client.jar");
+ assembly_classpath_ejb_client.addClasses(
+ com.sun.ts.lib.harness.EETest.Fault.class,
+ com.sun.ts.lib.harness.EETest.class,
+ com.sun.ts.lib.harness.EETest.SetupException.class,
+ com.sun.ts.tests.assembly.classpath.ejb.TestBean.class,
+ com.sun.ts.tests.assembly.classpath.ejb.TestBeanEJB.class,
+ com.sun.ts.tests.assembly.classpath.ejb.Client.class);
+ resURL = Client.class.getResource("assembly_classpath_ejb_client.xml");
+ if (resURL != null) {
+ assembly_classpath_ejb_client.addAsManifestResource(resURL, "application-client.xml");
+ }
+ resURL = Client.class.getResource("assembly_classpath_ejb_client.jar.sun-application-client.xml");
+ if(resURL != null) {
+ assembly_classpath_ejb_client.addAsManifestResource(resURL, "sun-application-client.xml");
+ }
+ assembly_classpath_ejb_client
+ .addAsManifestResource(new StringAsset("Main-Class: " + Client.class.getName() + "\n"), "MANIFEST.MF");
+ archiveProcessor.processClientArchive(assembly_classpath_ejb_client, Client.class, resURL);
+
+
+ JavaArchive assembly_classpath_ejb_ejb = ShrinkWrap.create(JavaArchive.class,
+ "assembly_classpath_ejb_ejb.jar");
+ assembly_classpath_ejb_ejb.addClasses(
+ com.sun.ts.tests.assembly.classpath.ejb.TestBean.class,
+ com.sun.ts.tests.assembly.classpath.ejb.TestBeanEJB.class,
+ com.sun.ts.lib.util.RemoteLoggingInitException.class,
+ com.sun.ts.tests.common.ejb.wrappers.Stateless3xWrapper.class
+ );
+ URL ejbResURL = Client.class.getResource("assembly_classpath_ejb_ejb.xml");
+ if (ejbResURL != null) {
+ assembly_classpath_ejb_ejb.addAsManifestResource(ejbResURL, "ejb-jar.xml");
+ }
+ ejbResURL = Client.class.getResource("assembly_classpath_ejb_ejb.jar.sun-ejb-jar.xml");
+ if(ejbResURL != null) {
+ assembly_classpath_ejb_ejb.addAsManifestResource(ejbResURL, "sun-ejb-jar.xml");
+ }
+ assembly_classpath_ejb_ejb
+ .addAsManifestResource(new StringAsset("Main-Class: " + Client.class.getName() + "\n"), "MANIFEST.MF");
+ archiveProcessor.processEjbArchive(assembly_classpath_ejb_ejb, Client.class, ejbResURL);
+
+ EnterpriseArchive assembly_classpath_ejb_ear = ShrinkWrap.create(EnterpriseArchive.class,
+ "assembly_classpath_ejb.ear");
+ assembly_classpath_ejb_ear.addAsLibrary(direct_classpath_util);
+ assembly_classpath_ejb_ear.addAsLibrary(indirect_classpath_util);
+ assembly_classpath_ejb_ear.addAsModule(assembly_classpath_ejb_client);
+ assembly_classpath_ejb_ear.addAsModule(assembly_classpath_ejb_ejb);
+ assembly_classpath_ejb_ear.addAsModule(indirect_classpath_util);
+ assembly_classpath_ejb_ear.addAsModule(direct_classpath_util);
+
+
+ URL earResURL = Client.class.getResource("application.xml");
+ if (earResURL != null) {
+ assembly_classpath_ejb_ear.addAsManifestResource(earResURL, "application.xml");
+ }
+ assembly_classpath_ejb_ear
+ .addAsManifestResource(new StringAsset("Main-Class: " + Client.class.getName() + "\n"), "MANIFEST.MF");
+ archiveProcessor.processEarArchive(assembly_classpath_ejb_ear, Client.class, earResURL);
+
+ return assembly_classpath_ejb_ear;
+ }
+
/**
* @testName: testDirectLibrary
*
@@ -84,6 +206,7 @@ public void setup(String[] args, Properties p) throws Fault {
* of the EJB.
*
*/
+ @Test
public void testDirectLibrary() throws Fault {
TestBean bean;
boolean pass;
@@ -145,6 +268,7 @@ public void testDirectLibrary() throws Fault {
* logical classpath of the EJB.
*
*/
+ @Test
public void testIndirectLibrary() throws Fault {
TestBean bean;
boolean pass;
diff --git a/assembly/src/main/java/com/sun/ts/tests/assembly/classpath/ejb/assembly_classpath_ejb_client.jar.sun-application-client.xml b/assembly/src/main/java/com/sun/ts/tests/assembly/classpath/ejb/assembly_classpath_ejb_client.jar.sun-application-client.xml
index b84472d94b..7e0d4d3d4e 100644
--- a/assembly/src/main/java/com/sun/ts/tests/assembly/classpath/ejb/assembly_classpath_ejb_client.jar.sun-application-client.xml
+++ b/assembly/src/main/java/com/sun/ts/tests/assembly/classpath/ejb/assembly_classpath_ejb_client.jar.sun-application-client.xml
@@ -1,5 +1,5 @@
-
+
+
+
+ TS assembly Alternative DD deployment test
+ assembly_altDD_client
+
+ myCountry
+ java.lang.String
+ France
+
+
+ ejb/myPainter
+ Session
+ com.sun.ts.tests.assembly.altDD.PainterBean
+ Bean1
+
+
diff --git a/assembly/src/main/resources/com/sun/ts/tests/assembly/altDD/altDD_ejb.xml b/assembly/src/main/resources/com/sun/ts/tests/assembly/altDD/altDD_ejb.xml
new file mode 100644
index 0000000000..edf3464328
--- /dev/null
+++ b/assembly/src/main/resources/com/sun/ts/tests/assembly/altDD/altDD_ejb.xml
@@ -0,0 +1,54 @@
+
+
+
+
+ Ejb1
+
+
+ Bean1
+ com.sun.ts.tests.assembly.altDD.PainterBean
+ com.sun.ts.tests.assembly.altDD.PainterBeanEJB
+ Stateless
+ Bean
+
+ myName
+ java.lang.String
+ Gaughin
+
+
+
+
+
+
+ Bean2
+ com.sun.ts.tests.assembly.altDD.PainterBean
+ com.sun.ts.tests.assembly.altDD.PainterBeanEJB
+ Stateless
+ Bean
+
+ myName
+ java.lang.String
+ Matisse
+
+
+
+
+
+
+
diff --git a/assembly/src/main/resources/com/sun/ts/tests/assembly/altDD/application.xml b/assembly/src/main/resources/com/sun/ts/tests/assembly/altDD/application.xml
new file mode 100644
index 0000000000..6cbe0f85e7
--- /dev/null
+++ b/assembly/src/main/resources/com/sun/ts/tests/assembly/altDD/application.xml
@@ -0,0 +1,31 @@
+
+
+
+
+ Application description
+ assembly_altDD
+
+ assembly_altDD_ejb.jar
+ altDD_ejb.xml
+
+
+ assembly_altDD_client.jar
+ altDD_client.xml
+
+
diff --git a/assembly/src/main/resources/com/sun/ts/tests/assembly/altDD/assembly_altDD_client.jar.sun-application-client.xml b/assembly/src/main/resources/com/sun/ts/tests/assembly/altDD/assembly_altDD_client.jar.sun-application-client.xml
new file mode 100644
index 0000000000..be90374809
--- /dev/null
+++ b/assembly/src/main/resources/com/sun/ts/tests/assembly/altDD/assembly_altDD_client.jar.sun-application-client.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+ ejb/myPainter
+
+
+
diff --git a/assembly/src/main/resources/com/sun/ts/tests/assembly/altDD/assembly_altDD_client.xml b/assembly/src/main/resources/com/sun/ts/tests/assembly/altDD/assembly_altDD_client.xml
new file mode 100644
index 0000000000..f798ab49fd
--- /dev/null
+++ b/assembly/src/main/resources/com/sun/ts/tests/assembly/altDD/assembly_altDD_client.xml
@@ -0,0 +1,34 @@
+
+
+
+
+ TS assembly Alternative DD deployment test
+ assembly_altDD_client
+
+ myCountry
+ java.lang.String
+ Spain
+
+
+ ejb/myPainter
+ Session
+ com.sun.ts.tests.assembly.altDD.PainterBean
+ Bean1
+
+
diff --git a/assembly/src/main/resources/com/sun/ts/tests/assembly/altDD/assembly_altDD_ejb.jar.sun-ejb-jar.xml b/assembly/src/main/resources/com/sun/ts/tests/assembly/altDD/assembly_altDD_ejb.jar.sun-ejb-jar.xml
new file mode 100644
index 0000000000..fa822c317a
--- /dev/null
+++ b/assembly/src/main/resources/com/sun/ts/tests/assembly/altDD/assembly_altDD_ejb.jar.sun-ejb-jar.xml
@@ -0,0 +1,73 @@
+
+
+
+
+
+
+ 0
+
+ Bean1
+ assembly_altDD_PainterBean1
+ false
+
+
+ supported
+ supported
+ supported
+ supported
+
+
+ username_password
+ default
+ false
+
+
+ supported
+
+
+ false
+ -1
+
+
+
+ Bean2
+ assembly_altDD_PainterBean2
+ false
+
+
+ supported
+ supported
+ supported
+ supported
+
+
+ username_password
+ default
+ false
+
+
+ supported
+
+
+ false
+ -1
+
+
+
+
diff --git a/assembly/src/main/resources/com/sun/ts/tests/assembly/altDD/assembly_altDD_ejb.xml b/assembly/src/main/resources/com/sun/ts/tests/assembly/altDD/assembly_altDD_ejb.xml
new file mode 100644
index 0000000000..fbeb5bb9be
--- /dev/null
+++ b/assembly/src/main/resources/com/sun/ts/tests/assembly/altDD/assembly_altDD_ejb.xml
@@ -0,0 +1,54 @@
+
+
+
+
+ Ejb1
+
+
+ Bean1
+ com.sun.ts.tests.assembly.altDD.PainterBean
+ com.sun.ts.tests.assembly.altDD.PainterBeanEJB
+ Stateless
+ Bean
+
+ myName
+ java.lang.String
+ Dali
+
+
+
+
+
+
+ Bean2
+ com.sun.ts.tests.assembly.altDD.PainterBean
+ com.sun.ts.tests.assembly.altDD.PainterBeanEJB
+ Stateless
+ Bean
+
+ myName
+ java.lang.String
+ Picasso
+
+
+
+
+
+
+
diff --git a/assembly/src/main/resources/com/sun/ts/tests/assembly/classpath/appclient/MY_MANIFEST.MF b/assembly/src/main/resources/com/sun/ts/tests/assembly/classpath/appclient/MY_MANIFEST.MF
new file mode 100644
index 0000000000..c2fc72ef9e
--- /dev/null
+++ b/assembly/src/main/resources/com/sun/ts/tests/assembly/classpath/appclient/MY_MANIFEST.MF
@@ -0,0 +1,4 @@
+Manifest-Version: 1.0
+Main-Class: com.sun.ts.tests.assembly.classpath.appclient.Client
+Class-Path: libs/direct_classpath_util.jar
+
diff --git a/assembly/src/main/resources/com/sun/ts/tests/assembly/classpath/appclient/application.xml b/assembly/src/main/resources/com/sun/ts/tests/assembly/classpath/appclient/application.xml
new file mode 100644
index 0000000000..17dada7855
--- /dev/null
+++ b/assembly/src/main/resources/com/sun/ts/tests/assembly/classpath/appclient/application.xml
@@ -0,0 +1,26 @@
+
+
+
+
+Application description
+assembly_classpath_appclient
+
+assembly_classpath_appclient_client.jar
+
+
diff --git a/assembly/src/main/resources/com/sun/ts/tests/assembly/classpath/appclient/assembly_classpath_appclient_client.xml b/assembly/src/main/resources/com/sun/ts/tests/assembly/classpath/appclient/assembly_classpath_appclient_client.xml
new file mode 100644
index 0000000000..e9bc8692c2
--- /dev/null
+++ b/assembly/src/main/resources/com/sun/ts/tests/assembly/classpath/appclient/assembly_classpath_appclient_client.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ client for TS assembly classpath test (AppClient)
+ assembly_classpath_appclient_client
+
diff --git a/assembly/src/main/resources/com/sun/ts/tests/assembly/classpath/ejb/application.xml b/assembly/src/main/resources/com/sun/ts/tests/assembly/classpath/ejb/application.xml
new file mode 100644
index 0000000000..8484cfd5a0
--- /dev/null
+++ b/assembly/src/main/resources/com/sun/ts/tests/assembly/classpath/ejb/application.xml
@@ -0,0 +1,29 @@
+
+
+
+
+Application description
+assembly_classpath_ejb
+
+assembly_classpath_ejb_ejb.jar
+
+
+assembly_classpath_ejb_client.jar
+
+
diff --git a/assembly/src/main/resources/com/sun/ts/tests/assembly/classpath/ejb/assembly_classpath_ejb_client.jar.sun-application-client.xml b/assembly/src/main/resources/com/sun/ts/tests/assembly/classpath/ejb/assembly_classpath_ejb_client.jar.sun-application-client.xml
new file mode 100644
index 0000000000..7e0d4d3d4e
--- /dev/null
+++ b/assembly/src/main/resources/com/sun/ts/tests/assembly/classpath/ejb/assembly_classpath_ejb_client.jar.sun-application-client.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+ ejb/TestBean
+
+
+
diff --git a/assembly/src/main/resources/com/sun/ts/tests/assembly/classpath/ejb/assembly_classpath_ejb_client.xml b/assembly/src/main/resources/com/sun/ts/tests/assembly/classpath/ejb/assembly_classpath_ejb_client.xml
new file mode 100644
index 0000000000..d3ba3feba5
--- /dev/null
+++ b/assembly/src/main/resources/com/sun/ts/tests/assembly/classpath/ejb/assembly_classpath_ejb_client.xml
@@ -0,0 +1,29 @@
+
+
+
+
+ client for TS assembly classpath test for EJB's
+ assembly_classpath_ejb_client
+
+ ejb/TestBean
+ Session
+ com.sun.ts.tests.assembly.classpath.ejb.TestBean
+ TestBean
+
+
diff --git a/assembly/src/main/resources/com/sun/ts/tests/assembly/classpath/ejb/assembly_classpath_ejb_ejb.jar.sun-ejb-jar.xml b/assembly/src/main/resources/com/sun/ts/tests/assembly/classpath/ejb/assembly_classpath_ejb_ejb.jar.sun-ejb-jar.xml
new file mode 100644
index 0000000000..8fc3d5f78a
--- /dev/null
+++ b/assembly/src/main/resources/com/sun/ts/tests/assembly/classpath/ejb/assembly_classpath_ejb_ejb.jar.sun-ejb-jar.xml
@@ -0,0 +1,49 @@
+
+
+
+
+
+
+ 0
+
+ TestBean
+ assembly_classpath_ejb_TestBean
+ false
+
+
+ supported
+ supported
+ supported
+ supported
+
+
+ username_password
+ default
+ false
+
+
+ supported
+
+
+ false
+ -1
+
+
+
+
diff --git a/assembly/src/main/resources/com/sun/ts/tests/assembly/classpath/ejb/assembly_classpath_ejb_ejb.xml b/assembly/src/main/resources/com/sun/ts/tests/assembly/classpath/ejb/assembly_classpath_ejb_ejb.xml
new file mode 100644
index 0000000000..5a23092355
--- /dev/null
+++ b/assembly/src/main/resources/com/sun/ts/tests/assembly/classpath/ejb/assembly_classpath_ejb_ejb.xml
@@ -0,0 +1,34 @@
+
+
+
+
+ Ejb1
+
+
+ TestBean
+ com.sun.ts.tests.assembly.classpath.ejb.TestBean
+ com.sun.ts.tests.assembly.classpath.ejb.TestBeanEJB
+ Stateless
+ Bean
+
+
+
+
+
+
diff --git a/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/cocktail/compat9_10/application.xml b/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/cocktail/compat9_10/application.xml
new file mode 100644
index 0000000000..f4eec93c2a
--- /dev/null
+++ b/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/cocktail/compat9_10/application.xml
@@ -0,0 +1,35 @@
+
+
+
+
+ Application description
+ assembly_compat_cocktail_compat9_10
+
+ assembly_compat_cocktail_compat9_10_client.jar
+
+
+ assembly_compat_cocktail_compat9_10_jar2_ejb.jar
+
+
+ assembly_compat_cocktail_compat9_10_jar1_ejb.jar
+
+
+ assembly_compat_cocktail_compat9_10_another_client.jar
+
+
diff --git a/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/cocktail/compat9_10/assembly_compat_cocktail_compat9_10_another_client.jar.sun-application-client.xml b/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/cocktail/compat9_10/assembly_compat_cocktail_compat9_10_another_client.jar.sun-application-client.xml
new file mode 100644
index 0000000000..3941b5dec3
--- /dev/null
+++ b/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/cocktail/compat9_10/assembly_compat_cocktail_compat9_10_another_client.jar.sun-application-client.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+ ejb/Vision
+
+
+
+ ejb/Music
+
+
+
diff --git a/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/cocktail/compat9_10/assembly_compat_cocktail_compat9_10_another_client.xml b/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/cocktail/compat9_10/assembly_compat_cocktail_compat9_10_another_client.xml
new file mode 100644
index 0000000000..b9cabfb2e0
--- /dev/null
+++ b/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/cocktail/compat9_10/assembly_compat_cocktail_compat9_10_another_client.xml
@@ -0,0 +1,36 @@
+
+
+
+
+
+ TS Second application client for assembly compat_compat9_10 cocktail test (not run)
+ assembly_compat_cocktail_compat9_10_another_client
+
+ ejb/Vision
+ Session
+ com.sun.ts.tests.assembly.compat.cocktail.compat9_10.ReferencedBean
+ ReferencedBean1
+
+
+ ejb/Music
+ Session
+ com.sun.ts.tests.assembly.compat.cocktail.compat9_10.ReferencedBean
+ ReferencedBean2
+
+
diff --git a/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/cocktail/compat9_10/assembly_compat_cocktail_compat9_10_client.jar.sun-application-client.xml b/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/cocktail/compat9_10/assembly_compat_cocktail_compat9_10_client.jar.sun-application-client.xml
new file mode 100644
index 0000000000..3941b5dec3
--- /dev/null
+++ b/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/cocktail/compat9_10/assembly_compat_cocktail_compat9_10_client.jar.sun-application-client.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+ ejb/Vision
+
+
+
+ ejb/Music
+
+
+
diff --git a/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/cocktail/compat9_10/assembly_compat_cocktail_compat9_10_client.xml b/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/cocktail/compat9_10/assembly_compat_cocktail_compat9_10_client.xml
new file mode 100644
index 0000000000..94d5491986
--- /dev/null
+++ b/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/cocktail/compat9_10/assembly_compat_cocktail_compat9_10_client.xml
@@ -0,0 +1,37 @@
+
+
+
+
+
+ CTS Main application client for assembly compat cocktail compat9_10 test
+ assembly_compat_cocktail_compat9_10_client
+
+ ejb/Vision
+ Session
+ com.sun.ts.tests.assembly.compat.cocktail.compat9_10.ReferencedBean
+ ReferencedBean1
+
+
+ ejb/Music
+ Session
+ com.sun.ts.tests.assembly.compat.cocktail.compat9_10.ReferencedBean
+ ReferencedBean2
+
+
+
diff --git a/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/cocktail/compat9_10/assembly_compat_cocktail_compat9_10_jar1_ejb.jar.sun-ejb-jar.xml b/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/cocktail/compat9_10/assembly_compat_cocktail_compat9_10_jar1_ejb.jar.sun-ejb-jar.xml
new file mode 100644
index 0000000000..305cdaee8d
--- /dev/null
+++ b/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/cocktail/compat9_10/assembly_compat_cocktail_compat9_10_jar1_ejb.jar.sun-ejb-jar.xml
@@ -0,0 +1,49 @@
+
+
+
+
+
+
+ 0
+
+ ReferencedBean1
+ assembly_compat_cocktail_compat9_10_ReferencedBean1
+ false
+
+
+ supported
+ supported
+ supported
+ supported
+
+
+ username_password
+ default
+ false
+
+
+ supported
+
+
+ false
+ -1
+
+
+
+
diff --git a/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/cocktail/compat9_10/assembly_compat_cocktail_compat9_10_jar1_ejb.xml b/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/cocktail/compat9_10/assembly_compat_cocktail_compat9_10_jar1_ejb.xml
new file mode 100644
index 0000000000..013beb19ce
--- /dev/null
+++ b/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/cocktail/compat9_10/assembly_compat_cocktail_compat9_10_jar1_ejb.xml
@@ -0,0 +1,39 @@
+
+
+
+
+
+ Application description
+ Ejb1
+
+
+ ReferencedBean1
+ ReferencedBean1
+ com.sun.ts.tests.assembly.compat.cocktail.compat9_10.ReferencedBean
+ com.sun.ts.tests.assembly.compat.cocktail.compat9_10.ReferencedBeanEJB
+ Stateless
+ Bean
+
+ myName
+ java.lang.String
+ Rimbaud
+
+
+
+
diff --git a/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/cocktail/compat9_10/assembly_compat_cocktail_compat9_10_jar2_ejb.jar.sun-ejb-jar.xml b/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/cocktail/compat9_10/assembly_compat_cocktail_compat9_10_jar2_ejb.jar.sun-ejb-jar.xml
new file mode 100644
index 0000000000..df3baa5a66
--- /dev/null
+++ b/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/cocktail/compat9_10/assembly_compat_cocktail_compat9_10_jar2_ejb.jar.sun-ejb-jar.xml
@@ -0,0 +1,49 @@
+
+
+
+
+
+
+ 0
+
+ ReferencedBean2
+ assembly_compat_cocktail_compat9_10_ReferencedBean2
+ false
+
+
+ supported
+ supported
+ supported
+ supported
+
+
+ username_password
+ default
+ false
+
+
+ supported
+
+
+ false
+ -1
+
+
+
+
diff --git a/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/cocktail/compat9_10/assembly_compat_cocktail_compat9_10_jar2_ejb.xml b/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/cocktail/compat9_10/assembly_compat_cocktail_compat9_10_jar2_ejb.xml
new file mode 100644
index 0000000000..4f0209800c
--- /dev/null
+++ b/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/cocktail/compat9_10/assembly_compat_cocktail_compat9_10_jar2_ejb.xml
@@ -0,0 +1,41 @@
+
+
+
+
+
+ Application description
+ Ejb2
+
+
+ ReferencedBean2
+ com.sun.ts.tests.assembly.compat.cocktail.compat9_10.ReferencedBean
+ com.sun.ts.tests.assembly.compat.cocktail.compat9_10.ReferencedBeanEJB
+ Stateless
+ Bean
+
+ myName
+ java.lang.String
+ Verlaine
+
+
+
+
+
+
+
diff --git a/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/single/compat9_10/application-client.xml b/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/single/compat9_10/application-client.xml
new file mode 100644
index 0000000000..e6366e6114
--- /dev/null
+++ b/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/single/compat9_10/application-client.xml
@@ -0,0 +1,34 @@
+
+
+
+
+
+ client for TS assembly compat single compat9_10 test
+ assembly_compat_single_compat9_10_client
+
+ ejb/TestBean
+ Session
+ com.sun.ts.tests.assembly.compat.single.compat9_10.TestBean
+ TestBean
+
+
diff --git a/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/single/compat9_10/application.xml b/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/single/compat9_10/application.xml
new file mode 100644
index 0000000000..7a379cf6de
--- /dev/null
+++ b/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/single/compat9_10/application.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
+ assembly_compat_single_compat9_10
+ Application description
+
+ assembly_compat_single_compat9_10_client.jar
+
+
+ assembly_compat_single_compat9_10_ejb.jar
+
+
diff --git a/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/single/compat9_10/assembly_compat_single_compat9_10_client.jar.sun-application-client.xml b/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/single/compat9_10/assembly_compat_single_compat9_10_client.jar.sun-application-client.xml
new file mode 100644
index 0000000000..8dc5a0ed8a
--- /dev/null
+++ b/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/single/compat9_10/assembly_compat_single_compat9_10_client.jar.sun-application-client.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+ ejb/TestBean
+
+
+
diff --git a/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/single/compat9_10/assembly_compat_single_compat9_10_ejb.jar.sun-ejb-jar.xml b/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/single/compat9_10/assembly_compat_single_compat9_10_ejb.jar.sun-ejb-jar.xml
new file mode 100644
index 0000000000..424b6ca64d
--- /dev/null
+++ b/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/single/compat9_10/assembly_compat_single_compat9_10_ejb.jar.sun-ejb-jar.xml
@@ -0,0 +1,49 @@
+
+
+
+
+
+
+ 0
+
+ TestBean
+ assembly_compat_single_compat9_10_TestBean
+ false
+
+
+ supported
+ supported
+ supported
+ supported
+
+
+ username_password
+ default
+ false
+
+
+ supported
+
+
+ false
+ -1
+
+
+
+
diff --git a/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/single/compat9_10/ejb-jar.xml b/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/single/compat9_10/ejb-jar.xml
new file mode 100644
index 0000000000..80b11c63ca
--- /dev/null
+++ b/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/single/compat9_10/ejb-jar.xml
@@ -0,0 +1,35 @@
+
+
+
+
+
+ Ejb1
+
+
+ TestBean
+ com.sun.ts.tests.assembly.compat.single.compat9_10.TestBean
+ com.sun.ts.tests.assembly.compat.single.compat9_10.TestBeanEJB
+ Stateless
+ Bean
+
+
+
+
+
+
diff --git a/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/standalone/jar/compat9_10/application-client.xml b/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/standalone/jar/compat9_10/application-client.xml
new file mode 100644
index 0000000000..9cccb19bdd
--- /dev/null
+++ b/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/standalone/jar/compat9_10/application-client.xml
@@ -0,0 +1,33 @@
+
+
+
+
+
+ client for TS assembly compat stand-alone compat9_10 ejb-jar test
+ assembly_compat_standalone_jar_compat9_10_client
+
+ ejb/TestBean
+ Session
+ com.sun.ts.tests.assembly.compat.standalone.jar.compat9_10.TestBean
+
+
diff --git a/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/standalone/jar/compat9_10/application.xml b/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/standalone/jar/compat9_10/application.xml
new file mode 100644
index 0000000000..1700079a9a
--- /dev/null
+++ b/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/standalone/jar/compat9_10/application.xml
@@ -0,0 +1,26 @@
+
+
+
+
+ Application description
+ assembly_compat_standalone_jar_compat9_10
+
+ assembly_compat_standalone_jar_compat9_10_client.jar
+
+
diff --git a/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/standalone/jar/compat9_10/assembly_compat_standalone_jar_compat9_10_client.jar.sun-application-client.xml b/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/standalone/jar/compat9_10/assembly_compat_standalone_jar_compat9_10_client.jar.sun-application-client.xml
new file mode 100644
index 0000000000..295f23cb92
--- /dev/null
+++ b/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/standalone/jar/compat9_10/assembly_compat_standalone_jar_compat9_10_client.jar.sun-application-client.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+ ejb/TestBean
+ assembly_compat_standalone_jar_compat9_10_TestBean
+
+
diff --git a/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/standalone/jar/compat9_10/assembly_compat_standalone_jar_compat9_10_component_ejb.jar.sun-ejb-jar.xml b/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/standalone/jar/compat9_10/assembly_compat_standalone_jar_compat9_10_component_ejb.jar.sun-ejb-jar.xml
new file mode 100644
index 0000000000..e549a4c807
--- /dev/null
+++ b/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/standalone/jar/compat9_10/assembly_compat_standalone_jar_compat9_10_component_ejb.jar.sun-ejb-jar.xml
@@ -0,0 +1,49 @@
+
+
+
+
+
+
+ 0
+
+ TestBean
+ assembly_compat_standalone_jar_compat9_10_TestBean
+ false
+
+
+ supported
+ supported
+ supported
+ supported
+
+
+ username_password
+ default
+ false
+
+
+ supported
+
+
+ false
+ -1
+
+
+
+
diff --git a/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/standalone/jar/compat9_10/ejb-jar.xml b/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/standalone/jar/compat9_10/ejb-jar.xml
new file mode 100644
index 0000000000..3f146a1ad2
--- /dev/null
+++ b/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/standalone/jar/compat9_10/ejb-jar.xml
@@ -0,0 +1,62 @@
+
+
+
+
+
+ no description
+ Ejb1
+
+
+ no description
+ TestBean
+ TestBean
+ com.sun.ts.tests.assembly.compat.standalone.jar.compat9_10.TestBean
+ com.sun.ts.tests.assembly.compat.standalone.jar.compat9_10.TestBeanEJB
+ Stateless
+ Container
+
+
+
+
+
+
+
+
+
+ TestBean
+ Remote
+ initLogging
+
+ java.util.Properties
+
+
+ Required
+
+
+
+ TestBean
+ Remote
+ ping
+
+
+ Required
+
+
+
+
diff --git a/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/standalone/war/compat9_10/application-client.xml b/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/standalone/war/compat9_10/application-client.xml
new file mode 100644
index 0000000000..d9a9715181
--- /dev/null
+++ b/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/standalone/war/compat9_10/application-client.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
+ TS compat standalone compat9_10 war file test
+ assembly_compat_standalone_war_compat9_10_client
+
+ url/myURL
+ java.net.URL
+ Application
+ Shareable
+
+
diff --git a/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/standalone/war/compat9_10/application.xml b/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/standalone/war/compat9_10/application.xml
new file mode 100644
index 0000000000..90a1ab9229
--- /dev/null
+++ b/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/standalone/war/compat9_10/application.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+ Application description
+ assembly_compat_standalone_war_compat9_10
+
+ assembly_compat_standalone_war_compat9_10_client.jar
+
+
diff --git a/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/standalone/war/compat9_10/assembly_compat_standalone_war_compat9_10_client.jar.sun-application-client.xml b/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/standalone/war/compat9_10/assembly_compat_standalone_war_compat9_10_client.jar.sun-application-client.xml
new file mode 100644
index 0000000000..ab57c97a8b
--- /dev/null
+++ b/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/standalone/war/compat9_10/assembly_compat_standalone_war_compat9_10_client.jar.sun-application-client.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+ url/myURL
+ http://localhost:8080/dep_assembly_compat_standalone_war_compat9_10/test.jsp
+
+
diff --git a/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/standalone/war/compat9_10/assembly_compat_standalone_war_compat9_10_component_web.war.sun-web.xml b/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/standalone/war/compat9_10/assembly_compat_standalone_war_compat9_10_component_web.war.sun-web.xml
new file mode 100644
index 0000000000..2c1cfd8f50
--- /dev/null
+++ b/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/standalone/war/compat9_10/assembly_compat_standalone_war_compat9_10_component_web.war.sun-web.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+ dep_assembly_compat_standalone_war_compat9_10
+
diff --git a/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/standalone/war/compat9_10/test.jsp b/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/standalone/war/compat9_10/test.jsp
new file mode 100644
index 0000000000..b77fcd7b26
--- /dev/null
+++ b/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/standalone/war/compat9_10/test.jsp
@@ -0,0 +1,43 @@
+<%--
+
+ Copyright (c) 2006, 2024 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
+
+--%>
+
+
+
+<%@ page import="java.util.*" %>
+<%@ page import="com.sun.ts.lib.util.*" %>
+<%@ page import="com.sun.ts.lib.porting.*" %>
+
+<%
+ StringBuffer lep = new StringBuffer();
+ Properties myProps = new Properties();
+ java.util.Enumeration key;
+ String propName;
+
+ myProps.setProperty("compat_standalone_war_compat9_10", "" + "true");
+
+ key = myProps.keys();
+ while (key.hasMoreElements()) {
+ propName = (String) key.nextElement();
+ lep.append(propName + "=" + myProps.getProperty(propName) + "\n");
+ }
+%>
+
+<%= lep.toString() %>
+
diff --git a/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/standalone/war/compat9_10/web.xml b/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/standalone/war/compat9_10/web.xml
new file mode 100644
index 0000000000..a498e5561d
--- /dev/null
+++ b/assembly/src/main/resources/com/sun/ts/tests/assembly/compat/standalone/war/compat9_10/web.xml
@@ -0,0 +1,31 @@
+
+
+
+
+
+ Jakarta EE 9 compat test with Jakarta EE 10
+
+ test
+ /test.jsp
+ 0
+
+
+ 54
+
+
diff --git a/assembly/src/main/resources/com/sun/ts/tests/assembly/standalone/jar/assembly_standalone_jar_client.jar.sun-application-client.xml b/assembly/src/main/resources/com/sun/ts/tests/assembly/standalone/jar/assembly_standalone_jar_client.jar.sun-application-client.xml
new file mode 100644
index 0000000000..6d607aeb1d
--- /dev/null
+++ b/assembly/src/main/resources/com/sun/ts/tests/assembly/standalone/jar/assembly_standalone_jar_client.jar.sun-application-client.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+ ejb/TestBean
+ assembly_standalone_jar_TestBean
+
+
diff --git a/assembly/src/main/resources/com/sun/ts/tests/assembly/standalone/jar/assembly_standalone_jar_client.xml b/assembly/src/main/resources/com/sun/ts/tests/assembly/standalone/jar/assembly_standalone_jar_client.xml
new file mode 100644
index 0000000000..6361a453e3
--- /dev/null
+++ b/assembly/src/main/resources/com/sun/ts/tests/assembly/standalone/jar/assembly_standalone_jar_client.xml
@@ -0,0 +1,28 @@
+
+
+
+
+ client for TS assembly classpath test for EJB's
+ assembly_standalone_jar_client
+
+ ejb/TestBean
+ Session
+ com.sun.ts.tests.assembly.standalone.jar.TestBean
+
+
diff --git a/assembly/src/main/resources/com/sun/ts/tests/assembly/standalone/jar/assembly_standalone_jar_component_ejb.jar.sun-ejb-jar.xml b/assembly/src/main/resources/com/sun/ts/tests/assembly/standalone/jar/assembly_standalone_jar_component_ejb.jar.sun-ejb-jar.xml
new file mode 100644
index 0000000000..56561cf1b1
--- /dev/null
+++ b/assembly/src/main/resources/com/sun/ts/tests/assembly/standalone/jar/assembly_standalone_jar_component_ejb.jar.sun-ejb-jar.xml
@@ -0,0 +1,49 @@
+
+
+
+
+
+
+ 0
+
+ TestBean
+ assembly_standalone_jar_TestBean
+ false
+
+
+ supported
+ supported
+ supported
+ supported
+
+
+ username_password
+ default
+ false
+
+
+ supported
+
+
+ false
+ -1
+
+
+
+
diff --git a/assembly/src/main/resources/com/sun/ts/tests/assembly/standalone/jar/assembly_standalone_jar_component_ejb.xml b/assembly/src/main/resources/com/sun/ts/tests/assembly/standalone/jar/assembly_standalone_jar_component_ejb.xml
new file mode 100644
index 0000000000..d4bc1239a6
--- /dev/null
+++ b/assembly/src/main/resources/com/sun/ts/tests/assembly/standalone/jar/assembly_standalone_jar_component_ejb.xml
@@ -0,0 +1,55 @@
+
+
+
+
+ Ejb1
+
+
+ TestBean
+ com.sun.ts.tests.assembly.standalone.jar.TestBean
+ com.sun.ts.tests.assembly.standalone.jar.TestBeanEJB
+ Stateless
+ Container
+
+
+
+
+
+
+
+
+ TestBean
+ Remote
+ initLogging
+
+ java.util.Properties
+
+
+ Required
+
+
+
+ TestBean
+ Remote
+ ping
+
+ Required
+
+
+
diff --git a/assembly/src/main/resources/com/sun/ts/tests/assembly/standalone/war/assembly_standalone_war_client.jar.sun-application-client.xml b/assembly/src/main/resources/com/sun/ts/tests/assembly/standalone/war/assembly_standalone_war_client.jar.sun-application-client.xml
new file mode 100644
index 0000000000..cae0672cea
--- /dev/null
+++ b/assembly/src/main/resources/com/sun/ts/tests/assembly/standalone/war/assembly_standalone_war_client.jar.sun-application-client.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+ url/myURL
+ http://localhost:8080/dep_assembly_standalone_war/test.jsp
+
+
diff --git a/assembly/src/main/resources/com/sun/ts/tests/assembly/standalone/war/assembly_standalone_war_client.xml b/assembly/src/main/resources/com/sun/ts/tests/assembly/standalone/war/assembly_standalone_war_client.xml
new file mode 100644
index 0000000000..b7a3486ba0
--- /dev/null
+++ b/assembly/src/main/resources/com/sun/ts/tests/assembly/standalone/war/assembly_standalone_war_client.xml
@@ -0,0 +1,29 @@
+
+
+
+
+ TS standalone war file test
+ assembly_standalone_war_client
+
+ url/myURL
+ java.net.URL
+ Application
+ Shareable
+
+
diff --git a/assembly/src/main/resources/com/sun/ts/tests/assembly/standalone/war/assembly_standalone_war_component_web.war.sun-web.xml b/assembly/src/main/resources/com/sun/ts/tests/assembly/standalone/war/assembly_standalone_war_component_web.war.sun-web.xml
new file mode 100644
index 0000000000..671b81096b
--- /dev/null
+++ b/assembly/src/main/resources/com/sun/ts/tests/assembly/standalone/war/assembly_standalone_war_component_web.war.sun-web.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+ dep_assembly_standalone_war
+
+
diff --git a/assembly/src/main/resources/com/sun/ts/tests/assembly/standalone/war/assembly_standalone_war_component_web.xml b/assembly/src/main/resources/com/sun/ts/tests/assembly/standalone/war/assembly_standalone_war_component_web.xml
new file mode 100644
index 0000000000..fb9db20a21
--- /dev/null
+++ b/assembly/src/main/resources/com/sun/ts/tests/assembly/standalone/war/assembly_standalone_war_component_web.xml
@@ -0,0 +1,30 @@
+
+
+
+
+ assembly_standalone_war_web
+
+ test
+ /test.jsp
+ 0
+
+
+ 54
+
+
diff --git a/assembly/src/main/resources/com/sun/ts/tests/assembly/standalone/war/webFiles/test.jsp b/assembly/src/main/resources/com/sun/ts/tests/assembly/standalone/war/webFiles/test.jsp
new file mode 100644
index 0000000000..c990caa474
--- /dev/null
+++ b/assembly/src/main/resources/com/sun/ts/tests/assembly/standalone/war/webFiles/test.jsp
@@ -0,0 +1,39 @@
+<%--
+
+ Copyright (c) 2006, 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
+
+--%>
+
+<%@ page import="java.util.*" %>
+<%@ page import="com.sun.ts.lib.util.*" %>
+<%@ page import="com.sun.ts.lib.porting.*" %>
+
+<%
+ StringBuffer lep = new StringBuffer();
+ Properties myProps = new Properties();
+ java.util.Enumeration key;
+ String propName;
+
+ myProps.setProperty("standalone_war", "" + "true");
+
+ key = myProps.keys();
+ while (key.hasMoreElements()) {
+ propName = (String) key.nextElement();
+ lep.append(propName + "=" + myProps.getProperty(propName) + "\n");
+ }
+%>
+
+<%= lep.toString() %>
+
diff --git a/assembly/src/main/resources/util/META-INF/MY_MANIFEST.MF b/assembly/src/main/resources/util/META-INF/MY_MANIFEST.MF
new file mode 100644
index 0000000000..0777cf1172
--- /dev/null
+++ b/assembly/src/main/resources/util/META-INF/MY_MANIFEST.MF
@@ -0,0 +1,4 @@
+Manifest-Version: 1.0
+Created-By: 1.3.1-rc1 (Sun Microsystems Inc.)
+Class-Path: indirect_classpath_util.jar
+
diff --git a/assembly/src/main/resources/util/META-INF/ejb-jar.xml b/assembly/src/main/resources/util/META-INF/ejb-jar.xml
new file mode 100644
index 0000000000..57068b6280
--- /dev/null
+++ b/assembly/src/main/resources/util/META-INF/ejb-jar.xml
@@ -0,0 +1,44 @@
+
+
+
+
+ This is a dummy EJB deployment descriptor that should not be
+ interpreted by the deployment tool as it will never be
+ included in a J2EE module, just in a .jar file referenced
+ by a J2EE module using the Class-Path header in the
+ referencing .jar manifest file (J2EE 1.3 - 8.2)
+ Ejb1
+
+
+ com.sun.ts.tests.dummy.DummyBean
+ com.sun.ts.tests.dummy.DummyBean
+ com.sun.ts.tests.dummy.DummyBeanEJB
+ Stateful
+ Bean
+
+ myDummy
+ java.lang.String
+ In vino veritas
+
+
+
+
+
+
+
diff --git a/common/src/main/java/com/sun/ts/tests/common/connector/whitebox/TSConnectionImpl.java b/common/src/main/java/com/sun/ts/tests/common/connector/whitebox/TSConnectionImpl.java
index cdc34ca260..d8d614829c 100644
--- a/common/src/main/java/com/sun/ts/tests/common/connector/whitebox/TSConnectionImpl.java
+++ b/common/src/main/java/com/sun/ts/tests/common/connector/whitebox/TSConnectionImpl.java
@@ -45,6 +45,7 @@ public TSConnection getConnection() throws Exception {
.logAPI("TSConnectionImpl.getConnection", "", "");
return ctscon;
} catch (Exception ex) {
+ ex.printStackTrace();
ex.getMessage();
return null;
}
@@ -62,6 +63,7 @@ public TSConnection getConnection(String user, char[] passwd)
.logAPI("TSConnectionImpl.getConnection", "", "");
return ctscon;
} catch (Exception ex) {
+ ex.printStackTrace();
ex.getMessage();
return null;
}
diff --git a/common/src/main/java/com/sun/ts/tests/common/connector/whitebox/TSEISConnection.java b/common/src/main/java/com/sun/ts/tests/common/connector/whitebox/TSEISConnection.java
index fedb945a53..a12fea9afc 100644
--- a/common/src/main/java/com/sun/ts/tests/common/connector/whitebox/TSEISConnection.java
+++ b/common/src/main/java/com/sun/ts/tests/common/connector/whitebox/TSEISConnection.java
@@ -200,6 +200,7 @@ TSConnection getTSEISConnection() {
return null;
}
} catch (Exception ex) {
+ ex.printStackTrace();
return null;
}
}
diff --git a/common/src/main/java/com/sun/ts/tests/common/vehicle/appmanaged/AppManagedVehicleRunner.java b/common/src/main/java/com/sun/ts/tests/common/vehicle/appmanaged/AppManagedVehicleRunner.java
index de6c5ac803..14720b2a0d 100644
--- a/common/src/main/java/com/sun/ts/tests/common/vehicle/appmanaged/AppManagedVehicleRunner.java
+++ b/common/src/main/java/com/sun/ts/tests/common/vehicle/appmanaged/AppManagedVehicleRunner.java
@@ -22,6 +22,11 @@
import java.util.Properties;
+import javax.naming.InitialContext;
+import javax.naming.NameClassPair;
+import javax.naming.NamingEnumeration;
+import javax.naming.NamingException;
+
import com.sun.ts.lib.harness.Status;
import com.sun.ts.lib.util.TSNamingContext;
import com.sun.ts.lib.util.TestUtil;
@@ -33,9 +38,15 @@ public class AppManagedVehicleRunner implements VehicleRunnable {
public Status run(String[] args, Properties props) {
Status sTestStatus = null;
try {
- TSNamingContext jc = new TSNamingContext();
- AppManagedVehicleIF bean = (AppManagedVehicleIF) jc
- .lookup(APPMANAGED_REF_NAME);
+ AppManagedVehicleIF bean=null;
+ TSNamingContext jc = new TSNamingContext(props);
+ try {
+ bean = (AppManagedVehicleIF) jc
+ .lookup(APPMANAGED_REF_NAME);
+ } catch (Exception e) {
+ e.printStackTrace();
+ dumpJndi("", new InitialContext());
+ }
TestUtil.logTrace(
"application-managed JTA runner looked up vehicle: " + bean);
sTestStatus = (bean.runTest(args, props)).toStatus();
@@ -46,4 +57,24 @@ public Status run(String[] args, Properties props) {
}
return sTestStatus;
}
+
+ private void dumpJndi(String s,InitialContext jc ) {
+ try {
+ dumpTreeEntry(jc, jc.list(s), s);
+ } catch (Exception ignore) {
+ }
+ }
+ private void dumpTreeEntry(InitialContext jc, NamingEnumeration list, String s) throws NamingException {
+ System.out.println("\n1. AppManagedVehicleRunner jndi dump walking down tree branch name = " + s);
+ while (list.hasMore()) {
+ NameClassPair ncp = list.next();
+ System.out.println("2. AppManagedVehicleRunner jndi dump (show name + classname pair): " + ncp.toString());
+ if (s.length() == 0) {
+ dumpJndi(ncp.getName(), jc);
+ } else {
+ dumpJndi(s + "/" + ncp.getName(), jc);
+ }
+ }
+ }
+
}
diff --git a/common/src/main/java/com/sun/ts/tests/common/vehicle/appmanagedNoTx/AppManagedNoTxVehicleRunner.java b/common/src/main/java/com/sun/ts/tests/common/vehicle/appmanagedNoTx/AppManagedNoTxVehicleRunner.java
index fd2f0636e1..541123c9a7 100644
--- a/common/src/main/java/com/sun/ts/tests/common/vehicle/appmanagedNoTx/AppManagedNoTxVehicleRunner.java
+++ b/common/src/main/java/com/sun/ts/tests/common/vehicle/appmanagedNoTx/AppManagedNoTxVehicleRunner.java
@@ -33,12 +33,12 @@ public class AppManagedNoTxVehicleRunner implements VehicleRunnable {
public Status run(String[] args, Properties props) {
Status sTestStatus = null;
try {
- TSNamingContext jc = new TSNamingContext();
- AppManagedNoTxVehicleIF bean = (AppManagedNoTxVehicleIF) jc
- .lookup(APPMANAGEDNOTX_REF_NAME);
- TestUtil.logTrace(
- "application-managed resource-local runner looked up vehicle: "
- + bean);
+ TSNamingContext jc = new TSNamingContext();
+ AppManagedNoTxVehicleIF bean = (AppManagedNoTxVehicleIF) jc
+ .lookup(APPMANAGEDNOTX_REF_NAME);
+ TestUtil.logTrace(
+ "application-managed resource-local runner looked up vehicle: "
+ + bean);
sTestStatus = (bean.runTest(args, props)).toStatus();
} catch (Exception e) {
TestUtil.logErr("Test failed.", e);
diff --git a/connector/src/main/java/com/sun/ts/tests/connector/localTx/connection/connectionClient1.java b/connector/src/main/java/com/sun/ts/tests/connector/localTx/connection/connectionClient1.java
index 077fe4c87a..5f80def5ea 100644
--- a/connector/src/main/java/com/sun/ts/tests/connector/localTx/connection/connectionClient1.java
+++ b/connector/src/main/java/com/sun/ts/tests/connector/localTx/connection/connectionClient1.java
@@ -79,14 +79,15 @@ public void setup(String[] args, Properties p) throws Exception {
logMsg("Using: " + whitebox_tx_param);
// For application level sign on
- uname = p.getProperty("rauser1");
+ uname = p.getProperty("rauser1");
password = p.getProperty("rapassword1");
-
+
// Construct our DBSupport object. This object performs interactions
// on a table, based on the properties object supplied.
try {
dbutil = new DBSupport();
} catch (Exception e) {
+ e.printStackTrace();
TestUtil.printStackTrace(e);
TestUtil.logErr("###", e);
throw new Exception(
@@ -99,6 +100,7 @@ public void setup(String[] args, Properties p) throws Exception {
ds1 = (TSDataSource) nctx.lookup(whitebox_tx);
ds2 = (TSDataSource) nctx.lookup(whitebox_tx_param);
} catch (Exception e) {
+ e.printStackTrace();
TestUtil.printStackTrace(e);
TestUtil.logErr("####", e);
TestUtil.logMsg("Exception during JNDI lookup: " + e.getMessage());
@@ -120,13 +122,14 @@ public void setup(String[] args, Properties p) throws Exception {
*
*/
public void testGetConnection1() throws Exception {
-
+
// Get connection object using no parameters. Container managed
// signon.
try {
con = ds1.getConnection();
TestUtil.logMsg("Got connection from the DataSource.");
} catch (Exception e) {
+ e.printStackTrace();
TestUtil.logErr("Exception caught on creating connection.", e);
TestUtil.printStackTrace(e);
TestUtil.logErr("###", e);
@@ -141,6 +144,7 @@ public void testGetConnection1() throws Exception {
dbutil.insertIntoTable(con);
TestUtil.logMsg("Values inserted into table!");
} catch (Exception sqle) {
+ sqle.printStackTrace();
TestUtil.logErr("Exception inserting into table.", sqle);
TestUtil.printStackTrace(sqle);
throw new Exception(sqle.getMessage());
@@ -151,6 +155,7 @@ public void testGetConnection1() throws Exception {
dbutil.dropTable(con);
TestUtil.logMsg("Table has been dropped!");
} catch (Exception sqle) {
+ sqle.printStackTrace();
TestUtil.logErr("Exception dropping table.", sqle);
TestUtil.printStackTrace(sqle);
throw new Exception(sqle.getMessage());
@@ -172,7 +177,7 @@ public void testGetConnection1() throws Exception {
*
*/
public void testgetConnectionWithParameter1() throws Exception {
-
+
Vector log = null;
boolean b1 = false;
boolean b2 = false;
@@ -188,6 +193,7 @@ public void testgetConnectionWithParameter1() throws Exception {
log = ds2.getLog();
TestUtil.logTrace("Got connection.");
} catch (Exception sqle) {
+ sqle.printStackTrace();
TestUtil.logMsg("Exception caught on creating connection:");
TestUtil.printStackTrace(sqle);
throw new Exception(sqle.getMessage());
@@ -224,6 +230,7 @@ public void testgetConnectionWithParameter1() throws Exception {
dbutil.insertIntoTable(con);
TestUtil.logMsg("Values inserted into table!");
} catch (Exception sqle) {
+ sqle.printStackTrace();
TestUtil.logMsg("Exception inserting into table.");
TestUtil.printStackTrace(sqle);
throw new Exception(sqle.getMessage());
@@ -234,6 +241,7 @@ public void testgetConnectionWithParameter1() throws Exception {
dbutil.dropTable(con);
TestUtil.logMsg("Table has been dropped!");
} catch (Exception sqle) {
+ sqle.printStackTrace();
TestUtil.logMsg("Exception dropping table.");
TestUtil.printStackTrace(sqle);
throw new Exception(sqle.getMessage());
diff --git a/connector/src/main/java/com/sun/ts/tests/connector/xa/workmgt/workmgtClient1.java b/connector/src/main/java/com/sun/ts/tests/connector/xa/workmgt/workmgtClient1.java
index d0cba276b0..1d295f0751 100644
--- a/connector/src/main/java/com/sun/ts/tests/connector/xa/workmgt/workmgtClient1.java
+++ b/connector/src/main/java/com/sun/ts/tests/connector/xa/workmgt/workmgtClient1.java
@@ -71,6 +71,7 @@ public void setup(String[] args, Properties p) throws Exception {
try {
dbutil = new DBSupport();
} catch (Exception e) {
+ e.printStackTrace();
throw new Exception(
"Exception constructing DBSupport object: " + e.getMessage(), e);
}
@@ -80,6 +81,7 @@ public void setup(String[] args, Properties p) throws Exception {
ncxa = new TSNamingContext();
ds1 = (TSDataSource) ncxa.lookup(whitebox_xa);
} catch (Exception e) {
+ e.printStackTrace();
TestUtil.printStackTrace(e);
TestUtil.logMsg("Exception during JNDI lookup: " + e.getMessage());
}
diff --git a/core-profile-tck/README.adoc b/core-profile-tck/README.adoc
index 59986096ae..f069a15581 100644
--- a/core-profile-tck/README.adoc
+++ b/core-profile-tck/README.adoc
@@ -4,7 +4,7 @@ This is the repository for the Jakarta Core Profile TCK
== Sources in GIT
-Main branch contains the work-in-progress on Jakarta Core Profile TCK 10.0
+Main branch contains the work-in-progress on Jakarta Core Profile TCK 11.0
=== Source Layout
diff --git a/core-profile-tck/examples/README.adoc b/core-profile-tck/examples/README.adoc
index dd09f5d375..da9fbbee97 100644
--- a/core-profile-tck/examples/README.adoc
+++ b/core-profile-tck/examples/README.adoc
@@ -1,9 +1,7 @@
= Example Jakarta Core Profile Compatibile Implementation TCK Configurations
-This directory contains git submodules for Jakarta Core Profile compatible implementations TCK runner projects. To see the contents when cloning the core-profile-tck project, you either need to have used the `--recurse-submodule` option to clone, or you need to run `git submodule init` and `git submodule update` from within each subdirectory after the clone of core-profile-tck project to initialize and fetch the submodule project contents.
+This directory contains example Core Profile TCK maven projects to run the TCK tests against an implementation.
-When you are done making changes to your local branch and before switching to other git branches, remove the submodule (remote) repo from your local repo by running the `git submodule deinit wf-core-tck-runner` command from the `core-profile-tck/examples` folder. Removing the submodule (repo) will ensure that the submodule will not be used in the branches that you switch to.
+As part of the release process, the following runner repositories are cloned:
+https://github.com/wildfly/wildfly-tck-runners/tree/main/core-profile as wf-core-tck-runner
-== Current Compatible Implementation TCK Runner Projects
-
-* wf-core-tck-runner - this submodule contains the Maven project for WildFly 27
diff --git a/core-profile-tck/examples/wf-core-tck-runner b/core-profile-tck/examples/wf-core-tck-runner
deleted file mode 160000
index 349ff6312f..0000000000
--- a/core-profile-tck/examples/wf-core-tck-runner
+++ /dev/null
@@ -1 +0,0 @@
-Subproject commit 349ff6312ffbbcd98e7f3e03374304e6e813e9e3
diff --git a/core-profile-tck/pom.xml b/core-profile-tck/pom.xml
index 6b41d16feb..7f32b7afcd 100644
--- a/core-profile-tck/pom.xml
+++ b/core-profile-tck/pom.xml
@@ -247,7 +247,7 @@
org.apache.maven.plugins
maven-compiler-plugin
- 3.12.1
+ 3.13.0
org.apache.maven.plugins
@@ -257,7 +257,7 @@
org.apache.maven.plugins
maven-failsafe-plugin
- 3.0.0
+ 3.5.2
org.apache.maven.plugins
diff --git a/core-profile-tck/tck-dist/EFTL.adoc b/core-profile-tck/tck-dist/EFTL.adoc
new file mode 100644
index 0000000000..97ff4a1a21
--- /dev/null
+++ b/core-profile-tck/tck-dist/EFTL.adoc
@@ -0,0 +1,24 @@
+= Eclipse Foundation Specification License - v1.1
+
+By using and/or copying this document, or the Eclipse Foundation document from which this statement is linked or incorporated by reference, you (the licensee) agree that you have read, understood, and will comply with the following terms and conditions:
+
+Permission to copy, and distribute the contents of this document, or the Eclipse Foundation document from which this statement is linked, in any medium for any purpose and without fee or royalty is hereby granted, provided that you include the following on ALL copies of the document, or portions thereof, that you use:
+
+* link or URL to the original Eclipse Foundation document.
+* All existing copyright notices, or if one does not exist, a notice (hypertext is preferred, but a textual representation is permitted) of the form: "Copyright (c) [$date-of-document] Eclipse Foundation AISBL <> "
+
+Inclusion of the full text of this NOTICE must be provided. We request that authorship attribution be provided in any software, documents, or other items or products that you create pursuant to the implementation of the contents of this document, or any portion thereof.
+
+No right to create modifications or derivatives of Eclipse Foundation documents is granted pursuant to this license, except anyone may prepare and distribute derivative works and portions of this document in software that implements the specification, in supporting materials accompanying such software, and in documentation of such software, PROVIDED that all such works include the notice below. HOWEVER, the publication of derivative works of this document for use as a technical specification is expressly prohibited.
+
+The notice is:
+
+"Copyright (c) [$date-of-document] Eclipse Foundation AISBL. This software or document includes material copied from or derived from [title and URI of the Eclipse Foundation specification document]."
+
+== Disclaimers
+
+THIS DOCUMENT IS PROVIDED "AS IS," AND TO THE EXTENT PERMITTED BY APPLICABLE LAW THE COPYRIGHT HOLDERS AND THE ECLIPSE FOUNDATION AISBL MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, OR TITLE; THAT THE CONTENTS OF THE DOCUMENT ARE SUITABLE FOR ANY PURPOSE; NOR THAT THE IMPLEMENTATION OF SUCH CONTENTS WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.
+
+TO THE EXTENT PERMITTED BY APPLICABLE LAW THE COPYRIGHT HOLDERS AND THE ECLIPSE FOUNDATION AISBL WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE DOCUMENT OR THE PERFORMANCE OR IMPLEMENTATION OF THE CONTENTS THEREOF.
+
+The name and trademarks of the copyright holders or the Eclipse Foundation AISBL may NOT be used in advertising or publicity pertaining to this document or its contents without specific, written prior permission. Title to copyright in this document will at all times remain with copyright holders.
\ No newline at end of file
diff --git a/core-profile-tck/tck-dist/EFTL.txt b/core-profile-tck/tck-dist/EFTL.txt
deleted file mode 100644
index ad9c941022..0000000000
--- a/core-profile-tck/tck-dist/EFTL.txt
+++ /dev/null
@@ -1,43 +0,0 @@
-Eclipse Foundation Technology Compatibility Kit License - v 1.0
-Copyright (c) 2018, Eclipse Foundation, Inc. and its licensors.
-
-Redistribution and use in binary form is permitted provided that the following conditions are met:
- 1. Use of the Technology Compatibility Kit accompanying this license ( the “TCK”) and its documentation is permitted
- solely for the purpose of testing compatibility of an implementation (the “Product”) of a specification
- (the “Specification”) made available by the Eclipse Foundation, Inc. (“Eclipse”).
- 2. Only those modifications expressly permitted by the TCK and its documentation are permitted. Except in these
- limited circumstances, no modifications to the TCK are permitted under this license.
- 3. A Product will be deemed to be “compatible” with the Specification if it fully and completely meets and satisfies
- all requirements of the TCK.
- 4. Before any claim of compatibility (or any similar claim suggesting compatibility) is made based on the TCK, the
- testing party must:
- a. use the TCK to demonstrate that the Product fully and completely meets and satisfies all requirements of the TCK;
- b. make TCK test results showing full and complete satisfaction of all requirements of the TCK publicly
- available on the testing party’s website and send a link to such test results to Eclipse at tck@eclipse.org; and
- c. comply with any requirements stated in the Specification with regard to subsetting, supersetting, modifying
- or extending the Specification in any Product claimed to be compatible with the Specification.
- 5. The test results must be continuously available and the link must be live for at least as long as the Product is
- available in the marketplace.
- 6. The TCK may not be used as a basis for any statements of partial compatibility. The TCK may only be used as a
- basis for true, factual statements of full compatibility of Products that fully meet and satisfy all requirements
- of the TCK.
- 7. A determination that a Product is compatible with the TCK does not, in itself, give rise to the right to use any
- name, mark, logo associated with the TCK, Eclipse, or Eclipse’s contributors or licensors.
- 8. Upon the request of Eclipse, a tester will retract any statements of compatibility (or any similar claim
- suggesting compatibility) which Eclipse reasonably determines to be false or misleading or in violation of the
- terms of this license.
- 9. Redistribution of the TCK must be under this Eclipse Foundation Technology Compatibility Kit License and must
- reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation
- and/or other materials provided with the distribution.
- 10. Neither the name, trademarks or logos of Eclipse, nor the names, trademarks or logos of its contributors or
- licensors may be used to endorse or promote products tested with this software without specific prior written permission.
- 11. The source code for the TCK accompanying this license is available from Eclipse.
-
-TO THE EXTENT PERMITTED BY APPLICABLE LAW, THIS SOFTWARE IS PROVIDED ON AN “AS IS” BASIS, WITHOUT WARRANTIES OR
-CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE,
-NON- INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. TO THE EXTENT PERMITTED BY APPLICABLE LAW,
-NEITHER THE COPYRIGHT OWNER OR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF
-LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
-THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE
-POSSIBILITY OF SUCH DAMAGES.
diff --git a/core-profile-tck/tck-dist/pom.xml b/core-profile-tck/tck-dist/pom.xml
index 923f67813f..6590e83705 100644
--- a/core-profile-tck/tck-dist/pom.xml
+++ b/core-profile-tck/tck-dist/pom.xml
@@ -24,10 +24,12 @@
Jakarta Core Profile TCK Distribution
- 3.0.0
+ 3.1.0
2.3.18
3.0.0
core-profile-tck-reference-guide
+ 11.0
+ 11
@@ -113,8 +115,8 @@
true
true
${project.version}
- 10.0
- 10
+ ${revnumber}
+ ${revmajor}
@@ -134,8 +136,8 @@
true
true
${project.version}
- 10.0
- 10
+ ${revnumber}
+ ${revmajor}
diff --git a/core-profile-tck/tck-dist/src/main/asciidoc/configuration.asciidoc b/core-profile-tck/tck-dist/src/main/asciidoc/configuration.asciidoc
index e483ec3ea3..4401e271aa 100644
--- a/core-profile-tck/tck-dist/src/main/asciidoc/configuration.asciidoc
+++ b/core-profile-tck/tck-dist/src/main/asciidoc/configuration.asciidoc
@@ -13,7 +13,7 @@ The various TCKs will have properties or configuration variables that need to be
[NOTE]
====
-The JSON-B standalone TCK configuration example includes running the the tests with the system property `java.locale.providers` set to COMPAT. This addresses a known inconsistency in a test when run under both Java SE 11 and Java SE 17.
+The JSON-B standalone TCK configuration example includes running the the tests with the system property `java.locale.providers` set to COMPAT. This addresses a known inconsistency in a test when run under both Java SE 17 and Java SE 21.
====
[NOTE]
@@ -34,7 +34,7 @@ In the WildFly runner example these are set to `unused`. These properties are va
Refer to the configuration section of the CDI, RESTful, JSON-P and JSON-B standalone TCK user guides for configuration specific to each TCK. The `examples` directory in the TCK distribution illustrates sample configuration setup using Maven.
==== Jakarta RESTful TCK Configuration
-The Jakarta Core Profile TCK provides a JUnit 5 suite runner that excludes the tests tagged with `xml_binding`, `servlet` and `security` as these specifications are not part of the Core Profile. The examples/wf-core-tck-runner/rest-tck project contains a pom.xml that configure surefire to run the `ee.jakarta.tck.coreprofile.rs.CoreProfileRestTCKSuite` class which configures the Core Profile RESTful TCK test suite.
+The Jakarta Core Profile TCK provides a JUnit 5 suite runner that excludes the tests tagged with `xml_binding`, `servlet` and `security` as these specifications are not part of the Core Profile. The https://github.com/wildfly/wildfly-tck-runners/tree/main/core-profile/rest-tck project contains a pom.xml that configure surefire to run the `ee.jakarta.tck.coreprofile.rs.CoreProfileRestTCKSuite` class which configures the Core Profile RESTful TCK test suite.
[NOTE]
diff --git a/core-profile-tck/tck-dist/src/main/asciidoc/installation.asciidoc b/core-profile-tck/tck-dist/src/main/asciidoc/installation.asciidoc
index 8a73b9db4c..dc3ecab02f 100644
--- a/core-profile-tck/tck-dist/src/main/asciidoc/installation.asciidoc
+++ b/core-profile-tck/tck-dist/src/main/asciidoc/installation.asciidoc
@@ -31,7 +31,7 @@ The TCK requires the following software to be installed:
* Maven 3.9 or newer
-* A Jakarta EE {revmajor} implementation (e.g., WildFly 34.x)
+* A Jakarta EE {revmajor} implementation (e.g., WildFly 34.x, Open Liberty 24.x)
You should refer to EE {revmajor} implementation instructions for how to install the runtime environment.
diff --git a/core-profile-tck/tck-dist/src/main/asciidoc/introduction.asciidoc b/core-profile-tck/tck-dist/src/main/asciidoc/introduction.asciidoc
index 1e74e5b3bd..eb30eeb577 100644
--- a/core-profile-tck/tck-dist/src/main/asciidoc/introduction.asciidoc
+++ b/core-profile-tck/tck-dist/src/main/asciidoc/introduction.asciidoc
@@ -207,7 +207,7 @@ The test archives are built with ShrinkWrap, a Java API for creating archives. S
This section lists the applicable requirements and specifications for the Jakarta Core Profile TCK.
-* *Specification requirements* - Software requirements for a Jakarta Core Profile implementation include a Java SE 11 or newer compatible runtime.
+* *Specification requirements* - Software requirements for a Jakarta Core Profile implementation include a Java SE 17 or newer compatible runtime.
* *Jakarta Contexts and Dependency Injection API* - The Java API defined in the CDI specification and provided by the compatible implementation.
@@ -242,4 +242,5 @@ The Core Profile TCK includes the following components:
The Core Profile TCK has been tested on following platforms:
* WildFly 34 Preview using Eclipse Temurin Java SE 17 and Eclipse Temurin Java SE 21 on Linux based operating systems.
+* Open Liberty 24 Beta using IBM Semeru Runtime Certified Edition 17 and 21 on Linux based operating systems.
diff --git a/core-profile-tck/tck-dist/src/main/assembly/assembly.xml b/core-profile-tck/tck-dist/src/main/assembly/assembly.xml
index fac75820ab..dfd0f75d80 100644
--- a/core-profile-tck/tck-dist/src/main/assembly/assembly.xml
+++ b/core-profile-tck/tck-dist/src/main/assembly/assembly.xml
@@ -21,7 +21,7 @@
-
+
LICENSE
@@ -46,7 +46,10 @@
-
+
${project.parent.basedir}/examples
examples
diff --git a/core-profile-tck/tck/src/main/java/ee/jakarta/tck/core/rest/context/app/ApplicationContextIT.java b/core-profile-tck/tck/src/main/java/ee/jakarta/tck/core/rest/context/app/ApplicationContextIT.java
index f8b7d55d19..05a90db364 100644
--- a/core-profile-tck/tck/src/main/java/ee/jakarta/tck/core/rest/context/app/ApplicationContextIT.java
+++ b/core-profile-tck/tck/src/main/java/ee/jakarta/tck/core/rest/context/app/ApplicationContextIT.java
@@ -24,6 +24,7 @@
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.EmptyAsset;
import org.jboss.shrinkwrap.api.exporter.ZipExporter;
import org.jboss.shrinkwrap.api.spec.WebArchive;
import org.junit.jupiter.api.Test;
@@ -46,7 +47,8 @@ public static WebArchive createTestArchive() {
archive.addClass(SimpleApplicationBean.class)
.addClass(ApplicationResource.class)
- .addClass(JaxRsActivator.class);
+ .addClass(JaxRsActivator.class)
+ .addAsManifestResource(EmptyAsset.INSTANCE, "beans.xml");
System.out.printf("test archive: %s\n", archive.toString(true));
archive.as(ZipExporter.class).exportTo(new File("/tmp/" + archive.getName()), true);
return archive;
diff --git a/core-profile-tck/tck/src/main/java/ee/jakarta/tck/core/rest/jsonb/cdi/CustomJsonbSerializationIT.java b/core-profile-tck/tck/src/main/java/ee/jakarta/tck/core/rest/jsonb/cdi/CustomJsonbSerializationIT.java
index 6c1275b6d2..3a60e5d5c8 100644
--- a/core-profile-tck/tck/src/main/java/ee/jakarta/tck/core/rest/jsonb/cdi/CustomJsonbSerializationIT.java
+++ b/core-profile-tck/tck/src/main/java/ee/jakarta/tck/core/rest/jsonb/cdi/CustomJsonbSerializationIT.java
@@ -35,6 +35,7 @@
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.EmptyAsset;
import org.jboss.shrinkwrap.api.asset.StringAsset;
import org.jboss.shrinkwrap.api.exporter.ZipExporter;
import org.jboss.shrinkwrap.api.spec.WebArchive;
@@ -65,6 +66,7 @@ public static WebArchive createTestArchive() throws Exception {
.addClass(SomeMessage.class)
.addClass(Utils.class)
.addClass(JaxRsActivator.class)
+ .addAsManifestResource(EmptyAsset.INSTANCE, "beans.xml")
.addAsResource(new StringAsset(pubKeyString), "key.pub");
;
System.out.printf("test archive: %s\n", archive.toString(true));
diff --git a/ejb30/pom.xml b/ejb30/pom.xml
index d12fa5da91..933ca2781a 100644
--- a/ejb30/pom.xml
+++ b/ejb30/pom.xml
@@ -45,10 +45,6 @@
${project.groupId}
common
-
- ${project.groupId}
- servlet
-
org.apache.commons
commons-lang3
@@ -102,6 +98,18 @@
jakarta.servlet.jsp-api
+
+ org.jboss.shrinkwrap
+ shrinkwrap-impl-base
+
+
+ org.jboss.arquillian.junit5
+ arquillian-junit5-core
+
+
+ org.jboss.arquillian.container
+ arquillian-container-test-api
+
jakarta.tck.arquillian
arquillian-protocol-common
diff --git a/ejb30/src/main/java/com/sun/ts/tests/servlet/common/servlets/HttpTCKServlet.java b/ejb30/src/main/java/com/sun/ts/tests/servlet/common/servlets/HttpTCKServlet.java
new file mode 100644
index 0000000000..bc2d28633b
--- /dev/null
+++ b/ejb30/src/main/java/com/sun/ts/tests/servlet/common/servlets/HttpTCKServlet.java
@@ -0,0 +1,114 @@
+/*
+ * Copyright (c) 2007, 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.servlet.common.servlets;
+
+import java.io.IOException;
+import java.lang.reflect.InvocationTargetException;
+import java.lang.reflect.Method;
+
+import jakarta.servlet.ServletConfig;
+import jakarta.servlet.ServletException;
+import jakarta.servlet.http.HttpServlet;
+import jakarta.servlet.http.HttpServletRequest;
+import jakarta.servlet.http.HttpServletResponse;
+import java.lang.System.Logger;
+
+/**
+ * GenericTCKServlet.java
+ *
+ * Any test that would normally extend GenericServlet will instead extend this class. This will provide a simple
+ * framework from invoking various tests defined as methods within the servlet that extends this class.
+ *
+ * Created: Wed Jul 31 20:57:16 2002
+ *
+ * @version %I%
+ */
+public abstract class HttpTCKServlet extends HttpServlet {
+
+ private static final String TEXT_PLAIN = "text/plain";
+
+ protected static final Logger logger = System.getLogger(HttpTCKServlet.class.getName());
+
+ /**
+ * TEST_HEADER
is the constant for the testname
header.
+ */
+ private static final String TEST_HEADER = "testname";
+
+ /**
+ * TEST_ARGS
is an array of Classes used during reflection.
+ */
+ private static final Class[] TEST_ARGS = { HttpServletRequest.class, HttpServletResponse.class };
+
+ /**
+ * init
initializes the servlet.
+ *
+ * @param config - ServletConfig
+ */
+ public void init(ServletConfig config) throws ServletException {
+ super.init(config);
+ }
+
+ /**
+ * invokeTest
uses reflection to invoke test methods in child classes of this particular class.
+ *
+ * @param req - HttpServletRequest
+ * @param res - HttpServletResponse
+ * @exception ServletException if an error occurs
+ */
+ protected void invokeTest(HttpServletRequest req, HttpServletResponse res) throws ServletException {
+ res.setContentType(TEXT_PLAIN);
+ char[] temp = req.getParameter(TEST_HEADER).toCharArray();
+ temp[0] = Character.toLowerCase(temp[0]);
+ String test = new String(temp);
+
+ try {
+ Method method = this.getClass().getMethod(test, TEST_ARGS);
+ method.invoke(this, new Object[] { req, res });
+ } catch (InvocationTargetException ite) {
+ throw new ServletException(ite.getTargetException());
+ } catch (NoSuchMethodException nsme) {
+ throw new ServletException("Test: " + test + " does not exist");
+ } catch (Throwable t) {
+ throw new ServletException("Error executing test: " + test, t);
+ }
+ }
+
+ /**
+ * A basic implementation of the doGet
method which will call invokeTest.
+ *
+ * @param req - HttpServletRequest
+ * @param res - HttpServletResponse
+ * @exception ServletException if an error occurs
+ * @exception IOException if an IO error occurs
+ */
+ public void doGet(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException {
+ invokeTest(req, res);
+ }
+
+ /**
+ * A basic implementation of the doPost
method which will call invokeTest.
+ *
+ * @param req - HttpServletRequest
+ * @param res - HttpServletResponse
+ * @exception ServletException if an error occurs
+ * @exception IOException if an IO error occurs
+ */
+ public void doPost(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException {
+ invokeTest(req, res);
+ }
+
+}
diff --git a/el/src/main/java/com/sun/ts/tests/el/api/jakarta_el/variablemapper/ELClientTest.java b/el/src/main/java/com/sun/ts/tests/el/api/jakarta_el/variablemapper/ELClientTest.java
index f32ad29484..6cc092e60e 100644
--- a/el/src/main/java/com/sun/ts/tests/el/api/jakarta_el/variablemapper/ELClientTest.java
+++ b/el/src/main/java/com/sun/ts/tests/el/api/jakarta_el/variablemapper/ELClientTest.java
@@ -48,7 +48,7 @@ public class ELClientTest extends ServiceEETest {
private static final Logger logger = System.getLogger(ELClientTest.class.getName());
- private Properties testProps;
+ private Properties testProps = System.getProperties();
public static void main(String[] args) {
ELClientTest theTests = new ELClientTest();
diff --git a/el/src/main/java/com/sun/ts/tests/el/spec/mapper/ELClientTest.java b/el/src/main/java/com/sun/ts/tests/el/spec/mapper/ELClientTest.java
index 997b5b4d80..d59b9fe28f 100644
--- a/el/src/main/java/com/sun/ts/tests/el/spec/mapper/ELClientTest.java
+++ b/el/src/main/java/com/sun/ts/tests/el/spec/mapper/ELClientTest.java
@@ -61,7 +61,7 @@ void logFinishTest(TestInfo testInfo) {
logger.log(Logger.Level.INFO, "FINISHED TEST : " + testInfo.getDisplayName());
}
- Properties testProps;
+ Properties testProps = System.getProperties();
public static void main(String[] args) {
ELClientTest theTests = new ELClientTest();
diff --git a/glassfish-runner/annotations-tck/pom.xml b/glassfish-runner/annotations-tck/pom.xml
index d694f3a6c8..e4b86861ad 100644
--- a/glassfish-runner/annotations-tck/pom.xml
+++ b/glassfish-runner/annotations-tck/pom.xml
@@ -29,7 +29,7 @@
jar
- 8.0.0-M1
+ 8.0.0-M1
glassfish7
5.9.1
jakarta-annotations-tck
@@ -110,7 +110,7 @@
org.glassfish.main.distributions
${glassfish-artifact-id}
- ${glassfish.container.version}
+ ${glassfish.version}
zip
true
${project.build.directory}
diff --git a/glassfish-runner/jms-platform-tck/j2ee.pass b/glassfish-runner/assembly-tck/j2ee.pass
similarity index 100%
rename from glassfish-runner/jms-platform-tck/j2ee.pass
rename to glassfish-runner/assembly-tck/j2ee.pass
diff --git a/glassfish-runner/el-platform-tck/jakartaeetck/bin/certificates/clientcert.jks b/glassfish-runner/assembly-tck/jakartaeetck/bin/certificates/clientcert.jks
similarity index 100%
rename from glassfish-runner/el-platform-tck/jakartaeetck/bin/certificates/clientcert.jks
rename to glassfish-runner/assembly-tck/jakartaeetck/bin/certificates/clientcert.jks
diff --git a/glassfish-runner/el-platform-tck/jakartaeetck/bin/certificates/clientcert.p12 b/glassfish-runner/assembly-tck/jakartaeetck/bin/certificates/clientcert.p12
similarity index 100%
rename from glassfish-runner/el-platform-tck/jakartaeetck/bin/certificates/clientcert.p12
rename to glassfish-runner/assembly-tck/jakartaeetck/bin/certificates/clientcert.p12
diff --git a/glassfish-runner/el-platform-tck/jakartaeetck/bin/certificates/cts_cert b/glassfish-runner/assembly-tck/jakartaeetck/bin/certificates/cts_cert
similarity index 100%
rename from glassfish-runner/el-platform-tck/jakartaeetck/bin/certificates/cts_cert
rename to glassfish-runner/assembly-tck/jakartaeetck/bin/certificates/cts_cert
diff --git a/glassfish-runner/assembly-tck/jakartaeetck/bin/ts.jte b/glassfish-runner/assembly-tck/jakartaeetck/bin/ts.jte
new file mode 100644
index 0000000000..ddbc2c5c14
--- /dev/null
+++ b/glassfish-runner/assembly-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_10.0.x/JTWork
+report.dir=/home/jenkins/agent/workspace/jakartaee-tck_10.0.x/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=/Users/alwjosep/Documents/jakartaee-tck/glassfish-runner/assembly-tck/target/glassfish8
+orb.host=localhost
+orb.port=4848
+
+########################################################################
+## 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=
+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=cts1
+password1=cts1
+user2=cts1
+password2=cts1
+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=false
+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.porting.implementation.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=8002
+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_10.0.x/modules/webservices-tools.jar:/home/jenkins/agent/workspace/jakartaee-tck_10.0.x/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=foo
+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=
+mailuser1=
+mailFrom=
+javamail.password=
+smtp.port=25
+imap.port=143
+
+### 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=""
+
+# 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}
\ No newline at end of file
diff --git a/glassfish-runner/assembly-tck/jakartaeetck/logging.properties b/glassfish-runner/assembly-tck/jakartaeetck/logging.properties
new file mode 100644
index 0000000000..121c1ccb0d
--- /dev/null
+++ b/glassfish-runner/assembly-tck/jakartaeetck/logging.properties
@@ -0,0 +1,20 @@
+handlers=java.util.logging.FileHandler,java.util.logging.ConsoleHandler
+
+org.glassfish.level=ALL
+com.sun.level=FINEST
+jakarta.enterprise.level=ALL
+
+
+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/el-platform-tck/javajoe.pass b/glassfish-runner/assembly-tck/javajoe.pass
similarity index 100%
rename from glassfish-runner/el-platform-tck/javajoe.pass
rename to glassfish-runner/assembly-tck/javajoe.pass
diff --git a/glassfish-runner/assembly-tck/pom.xml b/glassfish-runner/assembly-tck/pom.xml
new file mode 100644
index 0000000000..b66c7f4a8c
--- /dev/null
+++ b/glassfish-runner/assembly-tck/pom.xml
@@ -0,0 +1,470 @@
+
+
+
+ 4.0.0
+
+
+ org.glassfish
+ standalone-tck
+ 11.0.0-SNAPSHOT
+ ../pom.xml
+
+ jakarta
+ glassfish.assembly-tck
+ 11.0.0-SNAPSHOT
+ jar
+
+
+ 1.9.1.Final
+ ${project.build.directory}/${glassfish.toplevel.dir}/glassfish/bin/asadmin
+ ${project.build.directory}/${glassfish.toplevel.dir}
+
+
+ glassfish8
+
+ 8.0.0-JDK17-M7
+ 11.0.0-M2
+ 5.10.2
+ assembly-tck
+ 11.0.0-SNAPSHOT
+ ./jakartaeetck
+ 11.0.0-SNAPSHOT
+ ${project.version}
+
+
+
+
+
+ org.junit
+ junit-bom
+ ${junit.jupiter.version}
+ pom
+ import
+
+
+ org.jboss.arquillian
+ arquillian-bom
+ 1.9.1.Final
+ pom
+ import
+
+
+
+
+
+
+ org.junit.jupiter
+ junit-jupiter
+ ${junit.jupiter.version}
+
+
+ org.junit.vintage
+ junit-vintage-engine
+ ${junit.jupiter.version}
+ test
+
+
+ jakarta.tck
+ ${tck.artifactId}
+ ${tck.version}
+
+
+ jakarta.platform
+ jakarta.jakartaee-api
+ ${jakarta.platform.version}
+ provided
+
+
+ org.jboss.arquillian.container
+ arquillian-container-test-spi
+ ${arquillian.junit}
+
+
+ jakarta.tck.arquillian
+ arquillian-protocol-common
+ ${project.version}
+
+
+ jakarta.tck.arquillian
+ arquillian-protocol-lib
+ ${project.version}
+
+
+ jakarta.tck.arquillian
+ tck-porting-lib
+ ${project.version}
+
+
+ jakarta.tck
+ common
+ ${project.version}
+
+
+ jakarta.tck
+ libutil
+ ${project.version}
+
+
+ jakarta.tck
+ runtime
+ ${project.version}
+
+
+ org.glassfish.main.common
+ simple-glassfish-api
+ ${glassfish.version}
+
+
+ org.jboss.arquillian.junit5
+ arquillian-junit5-container
+ ${arquillian.junit}
+
+
+ org.jboss.arquillian.junit
+ arquillian-junit-core
+ ${arquillian.junit}
+
+
+ org.jboss.arquillian.junit5
+ arquillian-junit5-core
+ ${arquillian.junit}
+
+
+ org.omnifaces.arquillian
+ arquillian-glassfish-server-managed
+ 1.6
+ test
+
+
+ org.jboss.shrinkwrap.resolver
+ shrinkwrap-resolver-api
+ 3.2.0
+
+
+ org.jboss.shrinkwrap.resolver
+ shrinkwrap-resolver-impl-maven
+ 3.2.0
+
+
+ org.jboss.shrinkwrap.resolver
+ shrinkwrap-resolver-api-maven
+ 3.2.0
+
+
+ org.jboss.shrinkwrap.resolver
+ shrinkwrap-resolver-spi-maven
+ 3.2.0
+
+
+
+ jakarta.tck.arquillian
+ arquillian-protocol-javatest
+ ${version.jakarta.tck.arquillian}
+
+
+ org.jboss.shrinkwrap.resolver
+ shrinkwrap-resolver-api
+
+
+
+ org.jboss.shrinkwrap.resolver
+ shrinkwrap-resolver-impl-maven
+
+
+
+ org.jboss.shrinkwrap.resolver
+ shrinkwrap-resolver-api-maven
+
+
+
+ org.jboss.shrinkwrap.resolver
+ shrinkwrap-resolver-spi-maven
+
+
+
+
+
+ jakarta.tck.arquillian
+ arquillian-protocol-common
+ ${version.jakarta.tck.arquillian}
+
+
+ jakarta.tck.arquillian
+ arquillian-protocol-lib
+ ${version.jakarta.tck.arquillian}
+
+
+ jakarta.tck.arquillian
+ tck-porting-lib
+ ${version.jakarta.tck.arquillian}
+
+
+ org.apache.derby
+ derbyclient
+ 10.15.2.0
+
+
+ org.apache.derby
+ derbytools
+ 10.15.2.0
+
+
+
+
+
+
+ true
+ src/test/resources
+
+
+
+
+ org.apache.maven.plugins
+ maven-dependency-plugin
+ 3.2.0
+
+
+ 001-unpack
+
+ unpack
+
+ generate-resources
+
+
+
+ org.glassfish.main.distributions
+ ${glassfish-artifact-id}
+ ${glassfish.version}
+ zip
+ false
+ ${project.build.directory}
+
+
+
+
+
+
+
+ maven-antrun-plugin
+ 3.0.0
+
+
+ 002-asadmin-permission
+
+ run
+
+ generate-resources
+
+
+
+
+
+
+
+
+
+ org.apache.maven.plugins
+ maven-dependency-plugin
+ 3.6.1
+
+
+ 003-copy-protocol-lib
+
+ copy
+
+ generate-resources
+
+
+
+ jakarta.tck.arquillian
+ arquillian-protocol-lib
+ ${project.version}
+ jar
+ true
+ ${project.build.directory}/protocol
+ protocol.jar
+
+
+
+
+
+ 004-copy-lib
+
+ copy
+
+ generate-resources
+
+
+
+ jakarta.tck
+ libutil
+ true
+ ${project.build.directory}/lib
+ libutil.jar
+
+
+ jakarta.tck
+ common
+ true
+ ${project.build.directory}/lib
+ common.jar
+
+
+ jakarta.tck.arquillian
+ tck-porting-lib
+ true
+ ${project.build.directory}/lib
+ tck-porting-lib.jar
+
+
+ jakarta.tck
+ runtime
+ true
+ ${project.build.directory}/lib
+ runtime.jar
+
+
+ jakarta.tck
+ ${tck.artifactId}
+ true
+ ${project.build.directory}/lib
+ jms-tck.jar
+
+
+ org.apache.derby
+ derbyclient
+ true
+ ${glassfish.lib.dir}
+ derbyclient.jar
+
+
+ org.apache.derby
+ derbytools
+ true
+ ${glassfish.lib.dir}
+ derbytools.jar
+
+
+ jakarta.tck.arquillian
+ arquillian-protocol-lib
+ true
+ ${project.build.directory}/lib
+ arquillian-protocol-lib.jar
+
+
+
+
+
+
+
+ maven-resources-plugin
+ 3.1.0
+
+
+ 003-copy-dtds
+
+ copy-resources
+
+ generate-resources
+
+ ${project.build.directory}/${glassfish.toplevel.dir}/glassfish/lib/schemas
+
+
+ ${project.basedir}
+
+ sun-application-client_5_0-0.dtd
+ sun-ejb-jar_3_0-0.dtd
+ sun-application-client_1_4-0.dtd
+ sun-ejb-jar_2_1-0.dtd
+
+
+
+
+
+
+
+
+
+ maven-failsafe-plugin
+ 3.5.0
+
+ false
+
+
+
+ assembly-tests
+
+ integration-test
+ verify
+
+
+ tck-appclient
+
+
+
+
+
+ com/sun/ts/tests/assembly/altDD/Client.java
+ com/sun/ts/tests/assembly/classpath/appclient/Client.java
+ com/sun/ts/tests/assembly/classpath/ejb/Client.java
+ com/sun/ts/tests/assembly/compat/cocktail/compat9_10/Client.java
+ com/sun/ts/tests/assembly/compat/single/compat9_10/Client.java
+ com/sun/ts/tests/assembly/compat/standalone/jar/compat9_10/Client.java
+ com/sun/ts/tests/assembly/compat/standalone/war/compat9_10/Client.java
+ com/sun/ts/tests/assembly/standalone/jar/Client.java
+ com/sun/ts/tests/assembly/standalone/war/Client.java
+
+ jakarta.tck:${tck.artifactId}
+
+ ${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
+ list-file-users
+
+
+ true
+ true
+ true
+ ${project.basedir}
+ /tmp
+ appclient-arquillian.xml
+
+
+
+
+
+
+
+
+
+
+ full
+
+ true
+
+
+ glassfish
+
+
+
+ web
+
+ web
+
+
+
+
diff --git a/glassfish-runner/assembly-tck/sql/derby/derby.dml.sql b/glassfish-runner/assembly-tck/sql/derby/derby.dml.sql
new file mode 100644
index 0000000000..8c6aff02a0
--- /dev/null
+++ b/glassfish-runner/assembly-tck/sql/derby/derby.dml.sql
@@ -0,0 +1,767 @@
+#-------------------------------------------------
+#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(9999999999,0.000000000000001, null)
+
+Decimal_Tab_Insert= insert into Decimal_Tab values(9999999999,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
\ No newline at end of file
diff --git a/glassfish-runner/assembly-tck/src/main/java/org/glassfish/assembly/tck/GlassfishLoadableExtension.java b/glassfish-runner/assembly-tck/src/main/java/org/glassfish/assembly/tck/GlassfishLoadableExtension.java
new file mode 100644
index 0000000000..14dbb5db14
--- /dev/null
+++ b/glassfish-runner/assembly-tck/src/main/java/org/glassfish/assembly/tck/GlassfishLoadableExtension.java
@@ -0,0 +1,30 @@
+/*
+ * Copyright (c) 2024 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 org.glassfish.assembly.tck;
+
+import org.jboss.arquillian.container.test.spi.client.deployment.ApplicationArchiveProcessor;
+import org.jboss.arquillian.test.spi.enricher.resource.ResourceProvider;
+import org.jboss.arquillian.core.spi.LoadableExtension;
+
+public class GlassfishLoadableExtension implements LoadableExtension {
+ @Override
+ public void register(ExtensionBuilder extensionBuilder) {
+ extensionBuilder.service(ResourceProvider.class, GlassfishTestArchiveProcessor.class);
+ extensionBuilder.observer(GlassfishTestArchiveProcessor.class);
+
+ }
+}
diff --git a/glassfish-runner/assembly-tck/src/main/java/org/glassfish/assembly/tck/GlassfishTestArchiveProcessor.java b/glassfish-runner/assembly-tck/src/main/java/org/glassfish/assembly/tck/GlassfishTestArchiveProcessor.java
new file mode 100644
index 0000000000..982e84698c
--- /dev/null
+++ b/glassfish-runner/assembly-tck/src/main/java/org/glassfish/assembly/tck/GlassfishTestArchiveProcessor.java
@@ -0,0 +1,149 @@
+/*
+ * Copyright (c) 2024 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 org.glassfish.assembly.tck;
+
+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 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 GlassfishTestArchiveProcessor extends AbstractTestArchiveProcessor {
+
+ static Logger log = Logger.getLogger(GlassfishTestArchiveProcessor.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("glassfish-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);
+ }
+ 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);
+ }
+
+ 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 = findGlassfishDescriptors(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 findGlassfishDescriptors(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/assembly-tck/src/main/resources/META-INF/services/org.jboss.arquillian.core.spi.LoadableExtension b/glassfish-runner/assembly-tck/src/main/resources/META-INF/services/org.jboss.arquillian.core.spi.LoadableExtension
new file mode 100644
index 0000000000..73dff6d5f7
--- /dev/null
+++ b/glassfish-runner/assembly-tck/src/main/resources/META-INF/services/org.jboss.arquillian.core.spi.LoadableExtension
@@ -0,0 +1 @@
+org.glassfish.assembly.tck.GlassfishLoadableExtension
\ No newline at end of file
diff --git a/glassfish-runner/jta-platform-tck/jakartaeetck/bin/ts.jte b/glassfish-runner/assembly-tck/src/main/resources/ts.jte
similarity index 100%
rename from glassfish-runner/jta-platform-tck/jakartaeetck/bin/ts.jte
rename to glassfish-runner/assembly-tck/src/main/resources/ts.jte
diff --git a/glassfish-runner/assembly-tck/src/test/resources/appclient-arquillian.xml b/glassfish-runner/assembly-tck/src/test/resources/appclient-arquillian.xml
new file mode 100644
index 0000000000..f7eec6b54d
--- /dev/null
+++ b/glassfish-runner/assembly-tck/src/test/resources/appclient-arquillian.xml
@@ -0,0 +1,69 @@
+
+
+
+
+ target/deployments
+
+
+
+ target/
+
+
+
+
+
+ target/glassfish8
+
+
+ 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 \
+ -Djava.util.logging.config.file=jakartaeetck/logging.properties \
+ -jar \
+ ${clientEarDir}/${clientAppArchive}
+
+ \\
+
+
+ AS_JAVA=${env.JAVA_HOME};PATH=${env.PATH};LD_LIBRARY_PATH=${glassfish.home}/lib;AS_DEBUG=true;
+ APPCPATH=${clientEarLibClasspath}:target/lib/libutil.jar:target/lib/arquillian-protocol-lib.jar:target/lib/tck-porting-lib.jar:target/appclient/lib/arquillian-core.jar:target/appclient/lib/arquillian-junit5.jar:${glassfish.home}/glassfish/modules/security.jar:${glassfish.home}/glassfish/lib/gf-client.jar
+ ${project.basedir}
+ /tmp
+ jakartaeetck/bin/ts.jte
+ sql/derby/derby.dml.sql
+ true
+ 20000
+
+
+
+
+
\ No newline at end of file
diff --git a/glassfish-runner/jms-platform-tck/src/test/resources/arquillian.xml b/glassfish-runner/assembly-tck/src/test/resources/arquillian.xml
similarity index 100%
rename from glassfish-runner/jms-platform-tck/src/test/resources/arquillian.xml
rename to glassfish-runner/assembly-tck/src/test/resources/arquillian.xml
diff --git a/glassfish-runner/assembly-tck/sun-application-client_1_4-0.dtd b/glassfish-runner/assembly-tck/sun-application-client_1_4-0.dtd
new file mode 100644
index 0000000000..58440bbcbe
--- /dev/null
+++ b/glassfish-runner/assembly-tck/sun-application-client_1_4-0.dtd
@@ -0,0 +1,218 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glassfish-runner/assembly-tck/sun-application-client_5_0-0.dtd b/glassfish-runner/assembly-tck/sun-application-client_5_0-0.dtd
new file mode 100644
index 0000000000..c9bca8fa2c
--- /dev/null
+++ b/glassfish-runner/assembly-tck/sun-application-client_5_0-0.dtd
@@ -0,0 +1,531 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glassfish-runner/assembly-tck/sun-ejb-jar_2_1-0.dtd b/glassfish-runner/assembly-tck/sun-ejb-jar_2_1-0.dtd
new file mode 100644
index 0000000000..fc9d21d609
--- /dev/null
+++ b/glassfish-runner/assembly-tck/sun-ejb-jar_2_1-0.dtd
@@ -0,0 +1,789 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glassfish-runner/assembly-tck/sun-ejb-jar_3_0-0.dtd b/glassfish-runner/assembly-tck/sun-ejb-jar_3_0-0.dtd
new file mode 100644
index 0000000000..7a66d9452f
--- /dev/null
+++ b/glassfish-runner/assembly-tck/sun-ejb-jar_3_0-0.dtd
@@ -0,0 +1,1148 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glassfish-runner/batch-tck/apitests/pom.xml b/glassfish-runner/batch-tck/apitests/pom.xml
index 4dac562493..ea0d6950b7 100644
--- a/glassfish-runner/batch-tck/apitests/pom.xml
+++ b/glassfish-runner/batch-tck/apitests/pom.xml
@@ -22,17 +22,55 @@ Copyright (c) 2022, 2024 Contributors to the Eclipse Foundation
org.glassfish
glassfish.batch-tck
- 2.1.1
+ 2.1.5
glassfish.batch-tck.apitests
- pom
+ jar
Jakarta Batch API TCK Runner for Glassfish
- ${project.build.directory}/derby
-
+ ${project.build.directory}/${glassfish.toplevel.dir}
+ 5.10.2
+ 1.10.2
+
+
+
+
+
+ org.junit
+ junit-bom
+ ${version.org.junit.jupiter}
+ pom
+ import
+
+
+ org.jboss.arquillian
+ arquillian-bom
+ 1.9.1.Final
+ pom
+ import
+
+
+ org.jboss.arquillian.container
+ arquillian-container-test-spi
+ 1.9.1.Final
+
+
+ org.jboss.arquillian.junit5
+ arquillian-junit5-core
+ 1.9.1.Final
+ test
+
+
+ org.jboss.arquillian.junit5
+ arquillian-junit5-container
+ 1.9.1.Final
+ test
+
+
+
@@ -78,57 +116,24 @@ Copyright (c) 2022, 2024 Contributors to the Eclipse Foundation
- org.jboss.arquillian.container
- arquillian-glassfish-remote-6
- 1.0.0.Alpha1
-
-
- org.glassfish.jersey.inject
- jersey-hk2
-
-
- org.glassfish.jersey.core
- jersey-client
-
-
- org.glassfish.jersey.core
- jersey-common
-
-
- org.glassfish.jersey.media
- jersey-media-multipart
-
-
-
-
- org.glassfish.hk2
- hk2-locator
- 3.0.2
-
-
- org.glassfish.jersey.inject
- jersey-hk2
- 3.0.2
-
-
- org.glassfish.jersey.core
- jersey-client
- 3.0.2
-
-
- org.glassfish.jersey.core
- jersey-common
- 3.0.2
+ org.omnifaces.arquillian
+ arquillian-glassfish-server-managed
+ 1.7
+ test
+
- org.glassfish.jersey.media
- jersey-media-multipart
- 3.0.2
+ org.omnifaces.arquillian
+ glassfish-client-ee11
+ 1.7.1
+ test
+
+
org.apache.maven.plugins
maven-dependency-plugin
@@ -138,13 +143,13 @@ Copyright (c) 2022, 2024 Contributors to the Eclipse Foundation
unpack
- pre-integration-test
+ generate-resources
org.glassfish.main.distributions
glassfish
- ${glassfish.container.version}
+ ${glassfish.version}
zip
false
${project.build.directory}
@@ -154,24 +159,7 @@ Copyright (c) 2022, 2024 Contributors to the Eclipse Foundation
-
- org.apache.maven.plugins
- maven-antrun-plugin
-
-
- copy-arquillian-config-to-cp
-
- run
-
- generate-test-resources
-
-
-
-
-
-
-
-
+
org.codehaus.mojo
xml-maven-plugin
@@ -181,170 +169,28 @@ Copyright (c) 2022, 2024 Contributors to the Eclipse Foundation
echo-maven-plugin
+
- org.codehaus.mojo
- exec-maven-plugin
- 3.0.0
-
-
- Step 01: StopDomain1
-
- exec
-
- pre-integration-test
-
- ${project.build.directory}/${glassfish.toplevel.dir}/glassfish/bin/asadmin${script.ext}
-
- stop-domain
-
-
-
-
- Step 02: StopDatabase
-
- exec
-
- pre-integration-test
-
- ${project.build.directory}/${glassfish.toplevel.dir}/glassfish/bin/asadmin${script.ext}
- ${derby.basedir}
-
- stop-database
-
-
- 0
- 1
-
-
-
-
- Step 03: StartDomain1
-
- exec
-
- pre-integration-test
-
- ${project.build.directory}/${glassfish.toplevel.dir}/glassfish/bin/asadmin${script.ext}
-
- start-domain
-
-
-
-
- Step 04: StartDatabase
-
- exec
-
- pre-integration-test
-
- ${project.build.directory}/${glassfish.toplevel.dir}/glassfish/bin/asadmin${script.ext}
- ${derby.basedir}
-
- start-database
-
-
-
-
- Step 05: Execute DDL
-
- exec
-
- pre-integration-test
-
- ${project.build.directory}/${glassfish.toplevel.dir}/javadb/bin/ij${script.ext}
- ${derby.basedir}
-
- ${basedir}/src/test/resources/derby.ddl.jbatch-tck.sql
-
-
-
-
- Step 06: Create Connection Pool
-
- exec
-
- pre-integration-test
-
- ${project.build.directory}/${glassfish.toplevel.dir}/glassfish/bin/asadmin${script.ext}
-
- create-jdbc-connection-pool
- --datasourceClassname=org.apache.derby.jdbc.ClientDataSource40
- --resType=javax.sql.DataSource
- --property
- DatabaseName=batch:serverName=localhost:PortNumber=1527:User=batch:Password=batch
- batchtck
-
-
-
-
- Step 07: Create Connection Pool Resource
-
- exec
-
- pre-integration-test
-
- ${project.build.directory}/${glassfish.toplevel.dir}/glassfish/bin/asadmin${script.ext}
-
- create-jdbc-resource
- --poolName=batchtck
- jdbc/orderDB
-
-
-
-
- Step 08: StopDomain1 After Tests
-
- exec
-
- post-integration-test
-
- ${project.build.directory}/${glassfish.toplevel.dir}/glassfish/bin/asadmin${script.ext}
-
- stop-domain
-
-
-
-
- Step 09: StopDatabase After Test
-
- exec
-
- post-integration-test
-
- ${project.build.directory}/${glassfish.toplevel.dir}/glassfish/bin/asadmin${script.ext}
- ${derby.basedir}
-
- stop-database
-
-
-
-
-
-
-
- org.apache.maven.plugins
maven-failsafe-plugin
+ 3.5.1
- glassfish-remote
+ ${glassfish.home}
org.glassfish
+ true
+ ${glassfish.home}/glassfish/domains/domain1/config/batch;create=true
+ ${basedir}/src/test/resources/derby.ddl.jbatch-tck.sql
+ batch
+ ${basedir}/src/test/resources/password.txt
+
+ set server-config.network-config.protocols.protocol.http-listener-1.http.trace-enabled=true
+ create-jdbc-connection-pool --resType=javax.sql.DataSource --datasourceClassname=org.apache.derby.jdbc.ClientDataSource40 --property databaseName=${glassfish.home}/glassfish/domains/domain1/config/batch:serverName=localhost:PortNumber=1527:User=batch:Password=batch batchtck
+ create-jdbc-resource --poolName=batchtck jdbc/orderDB
+ list-jdbc-resources
-
-
- windows
-
-
- windows
-
-
-
- .bat
-
-
-
diff --git a/glassfish-runner/batch-tck/apitests/src/test/resources/arquillian.xml b/glassfish-runner/batch-tck/apitests/src/test/resources/arquillian.xml
deleted file mode 100644
index 3a4d0bd1a2..0000000000
--- a/glassfish-runner/batch-tck/apitests/src/test/resources/arquillian.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
-
-
-
-
- -->
-
-
- localhost
- false
- false
- 4848
-
-
-
-
-
diff --git a/glassfish-runner/batch-tck/apitests/src/test/resources/derby.ddl.jbatch-tck.sql b/glassfish-runner/batch-tck/apitests/src/test/resources/derby.ddl.jbatch-tck.sql
index 00849706b8..c6a5cad449 100644
--- a/glassfish-runner/batch-tck/apitests/src/test/resources/derby.ddl.jbatch-tck.sql
+++ b/glassfish-runner/batch-tck/apitests/src/test/resources/derby.ddl.jbatch-tck.sql
@@ -1,87 +1,85 @@
-CONNECT 'jdbc:derby://localhost:1527/batch;create=true';
+DROP TABLE app.Numbers;
+DROP TABLE app.Orders;
+DROP TABLE app.Inventory;
-DROP TABLE Numbers;
-DROP TABLE Orders;
-DROP TABLE Inventory;
-
-CREATE TABLE Numbers
+CREATE TABLE app.Numbers
(
item INT,
quantity INT
);
-CREATE TABLE Orders
+CREATE TABLE app.Orders
(
orderID INTEGER NOT NULL GENERATED ALWAYS AS IDENTITY (START WITH 1, INCREMENT BY 1) PRIMARY KEY,
itemID INT,
quantity INT
);
-CREATE TABLE Inventory
+CREATE TABLE app.Inventory
(
itemID INT NOT NULL PRIMARY KEY,
quantity INT NOT NULL
);
-INSERT INTO Inventory
+INSERT INTO app.Inventory
VALUES (1, 100);
-INSERT INTO Numbers
+INSERT INTO app.Numbers
VALUES (1, 10);
-INSERT INTO Numbers
+INSERT INTO app.Numbers
VALUES (2, 10);
-INSERT INTO Numbers
+INSERT INTO app.Numbers
VALUES (3, 10);
-INSERT INTO Numbers
+INSERT INTO app.Numbers
VALUES (4, 10);
-INSERT INTO Numbers
+INSERT INTO app.Numbers
VALUES (5, 10);
-INSERT INTO Numbers
+INSERT INTO app.Numbers
VALUES (6, 10);
-INSERT INTO Numbers
+INSERT INTO app.Numbers
VALUES (7, 10);
-INSERT INTO Numbers
+INSERT INTO app.Numbers
VALUES (8, 10);
-INSERT INTO Numbers
+INSERT INTO app.Numbers
VALUES (9, 10);
-INSERT INTO Numbers
+INSERT INTO app.Numbers
VALUES (10, 10);
-INSERT INTO Numbers
+INSERT INTO app.Numbers
VALUES (11, 10);
-INSERT INTO Numbers
+INSERT INTO app.Numbers
VALUES (12, 10);
-INSERT INTO Numbers
+INSERT INTO app.Numbers
VALUES (13, 10);
-INSERT INTO Numbers
+INSERT INTO app.Numbers
VALUES (14, 10);
-INSERT INTO Numbers
+INSERT INTO app.Numbers
VALUES (15, 10);
-INSERT INTO Numbers
+INSERT INTO app.Numbers
VALUES (16, 10);
-INSERT INTO Numbers
+INSERT INTO app.Numbers
VALUES (17, 10);
-INSERT INTO Numbers
+INSERT INTO app.Numbers
VALUES (18, 10);
-INSERT INTO Numbers
+INSERT INTO app.Numbers
VALUES (19, 10);
-INSERT INTO Numbers
+INSERT INTO app.Numbers
VALUES (20, 10);
diff --git a/glassfish-runner/batch-tck/apitests/src/test/resources/password.txt b/glassfish-runner/batch-tck/apitests/src/test/resources/password.txt
new file mode 100644
index 0000000000..5ab0eec136
--- /dev/null
+++ b/glassfish-runner/batch-tck/apitests/src/test/resources/password.txt
@@ -0,0 +1,4 @@
+AS_ADMIN_MASTERPASSWORD=
+AS_ADMIN_PASSWORD=
+AS_ADMIN_USERPASSWORD=
+AS_ADMIN_DBPASSWORD=batch
diff --git a/glassfish-runner/batch-tck/pom.xml b/glassfish-runner/batch-tck/pom.xml
index b4d313cc94..60d05ae294 100644
--- a/glassfish-runner/batch-tck/pom.xml
+++ b/glassfish-runner/batch-tck/pom.xml
@@ -22,7 +22,7 @@ Copyright (c) 2022 Contributors to the Eclipse Foundation
jakarta.batch
jakarta.batch.arquillian.exec-parent
- 2.1.1
+ 2.1.5
@@ -38,9 +38,9 @@ Copyright (c) 2022 Contributors to the Eclipse Foundation
- 7.0.0-M10
- glassfish7
- 2.1.0
+ glassfish8
+ 8.0.0-M8
+ 2.1.5
@@ -50,49 +50,4 @@ Copyright (c) 2022 Contributors to the Eclipse Foundation
-
-
-
-
- com.diffplug.spotless
- spotless-maven-plugin
- 2.36.0
-
-
-
-
-
- com.diffplug.spotless
- spotless-maven-plugin
-
-
-
- pom.xml
-
-
- 4
-
- recommended_2008_06
-
- true
-
- true
-
- true
-
-
-
-
-
- check-spotless-poms
-
- check
-
- validate
-
-
-
-
-
-
diff --git a/glassfish-runner/batch-tck/sigtests/pom.xml b/glassfish-runner/batch-tck/sigtests/pom.xml
index bd2e396e71..967f938857 100644
--- a/glassfish-runner/batch-tck/sigtests/pom.xml
+++ b/glassfish-runner/batch-tck/sigtests/pom.xml
@@ -4,21 +4,21 @@
-
- org.glassfish
+
+ org.glassfish
glassfish.batch-tck
- 2.1.1
+ 2.1.5
- org.glassfish
glassfish.batch-tck.sigtests
-
+
- 7.0.0-M10
- glassfish7
+ glassfish8
+ 8.0.0-M8
+ ${project.build.directory}/${glassfish.toplevel.dir}
2.1.5
-
+
jakarta-snapshots
@@ -52,7 +52,7 @@
org.glassfish.main.distributions
glassfish
- ${glassfish.container.version}
+ ${glassfish.version}
zip
false
${project.build.directory}
@@ -93,7 +93,7 @@
-
+
@@ -105,6 +105,7 @@
jakarta.tck
sigtest-maven-plugin
+ 2.4
strictcheck
true
@@ -125,10 +126,10 @@
- jdk11
+ jdk21
true
- 11
+ 21
@@ -136,7 +137,8 @@
jakarta.tck
sigtest-maven-plugin
- ${project.build.directory}/sigtest-copy/sigtest/sigtest-1.6-batch.standalone.tck.sig-2.1-se11-OpenJDK-J9
+ ${project.build.directory}/sigtest-copy/sigtest/jakarta.sigtest-2.2-batch.standalone.tck.sig-2.1-se21-Temurin
+ 21
@@ -155,6 +157,7 @@
sigtest-maven-plugin
${project.build.directory}/sigtest-copy/sigtest/sigtest-1.6-batch.standalone.tck.sig-2.1-se17-TemurinHotSpot
+ 17
diff --git a/glassfish-runner/cdi-tck/pom.xml b/glassfish-runner/cdi-tck/pom.xml
index 1f6def2237..588ed02547 100644
--- a/glassfish-runner/cdi-tck/pom.xml
+++ b/glassfish-runner/cdi-tck/pom.xml
@@ -32,9 +32,9 @@
11.0.0-SNAPSHOT
+ 11.0.0-SNAPSHOT
4.1.0
- 11.0.0-SNAPSHOT
${project.build.directory}
@@ -422,12 +422,12 @@
maven-failsafe-plugin
- 3.3.0
+ 3.5.2
org.apache.maven.surefire
surefire-testng
- 3.3.0
+ 3.5.2
diff --git a/glassfish-runner/connector-platform-tck/connectors/whitebox/whitebox-notx-param.rar b/glassfish-runner/connector-platform-tck/connectors/whitebox/whitebox-notx-param.rar
new file mode 100644
index 0000000000..3b74e0980c
Binary files /dev/null and b/glassfish-runner/connector-platform-tck/connectors/whitebox/whitebox-notx-param.rar differ
diff --git a/glassfish-runner/connector-platform-tck/connectors/whitebox/whitebox-notx.rar b/glassfish-runner/connector-platform-tck/connectors/whitebox/whitebox-notx.rar
new file mode 100644
index 0000000000..80d149e9fd
Binary files /dev/null and b/glassfish-runner/connector-platform-tck/connectors/whitebox/whitebox-notx.rar differ
diff --git a/glassfish-runner/connector-platform-tck/connectors/whitebox/whitebox-tx-param.rar b/glassfish-runner/connector-platform-tck/connectors/whitebox/whitebox-tx-param.rar
new file mode 100644
index 0000000000..167b324d95
Binary files /dev/null and b/glassfish-runner/connector-platform-tck/connectors/whitebox/whitebox-tx-param.rar differ
diff --git a/glassfish-runner/connector-platform-tck/connectors/whitebox/whitebox-tx.rar b/glassfish-runner/connector-platform-tck/connectors/whitebox/whitebox-tx.rar
new file mode 100644
index 0000000000..e7b29ee35c
Binary files /dev/null and b/glassfish-runner/connector-platform-tck/connectors/whitebox/whitebox-tx.rar differ
diff --git a/glassfish-runner/connector-platform-tck/connectors/whitebox/whitebox-xa-param.rar b/glassfish-runner/connector-platform-tck/connectors/whitebox/whitebox-xa-param.rar
new file mode 100644
index 0000000000..4ec234d49c
Binary files /dev/null and b/glassfish-runner/connector-platform-tck/connectors/whitebox/whitebox-xa-param.rar differ
diff --git a/glassfish-runner/connector-platform-tck/connectors/whitebox/whitebox-xa.rar b/glassfish-runner/connector-platform-tck/connectors/whitebox/whitebox-xa.rar
new file mode 100644
index 0000000000..8cc72b5c35
Binary files /dev/null and b/glassfish-runner/connector-platform-tck/connectors/whitebox/whitebox-xa.rar differ
diff --git a/glassfish-runner/connector-platform-tck/connectors/whitebox/whitebox.jar b/glassfish-runner/connector-platform-tck/connectors/whitebox/whitebox.jar
new file mode 100644
index 0000000000..94540364b7
Binary files /dev/null and b/glassfish-runner/connector-platform-tck/connectors/whitebox/whitebox.jar differ
diff --git a/glassfish-runner/jms-platform-tck/jakartaeetck/bin/certificates/clientcert.jks b/glassfish-runner/connector-platform-tck/jakartaeetck/bin/certificates/clientcert.jks
similarity index 100%
rename from glassfish-runner/jms-platform-tck/jakartaeetck/bin/certificates/clientcert.jks
rename to glassfish-runner/connector-platform-tck/jakartaeetck/bin/certificates/clientcert.jks
diff --git a/glassfish-runner/jms-platform-tck/jakartaeetck/bin/certificates/clientcert.p12 b/glassfish-runner/connector-platform-tck/jakartaeetck/bin/certificates/clientcert.p12
similarity index 100%
rename from glassfish-runner/jms-platform-tck/jakartaeetck/bin/certificates/clientcert.p12
rename to glassfish-runner/connector-platform-tck/jakartaeetck/bin/certificates/clientcert.p12
diff --git a/glassfish-runner/jms-platform-tck/jakartaeetck/bin/certificates/cts_cert b/glassfish-runner/connector-platform-tck/jakartaeetck/bin/certificates/cts_cert
similarity index 100%
rename from glassfish-runner/jms-platform-tck/jakartaeetck/bin/certificates/cts_cert
rename to glassfish-runner/connector-platform-tck/jakartaeetck/bin/certificates/cts_cert
diff --git a/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte b/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte
new file mode 100644
index 0000000000..b5f85dc381
--- /dev/null
+++ b/glassfish-runner/connector-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=
+mailuser1=
+mailFrom=
+javamail.password=
+smtp.port=25
+imap.port=143
+
+### 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=""
+
+# 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/connector-platform-tck/jakartaeetck/bin/tssql.stmt b/glassfish-runner/connector-platform-tck/jakartaeetck/bin/tssql.stmt
new file mode 100644
index 0000000000..2d279c5402
--- /dev/null
+++ b/glassfish-runner/connector-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/connector-platform-tck/pom.xml b/glassfish-runner/connector-platform-tck/pom.xml
new file mode 100644
index 0000000000..83caef9c6c
--- /dev/null
+++ b/glassfish-runner/connector-platform-tck/pom.xml
@@ -0,0 +1,957 @@
+
+
+
+ 4.0.0
+
+ org.glassfish
+ standalone-tck
+ 11.0.0-SNAPSHOT
+ ../pom.xml
+
+ jakarta.tck
+ glassfish.connector-platform-tck
+ 11.0.0-SNAPSHOT
+ jar
+
+ 1.9.1.Final
+ cts-derby-pool
+ ;
+
+ derbyDB
+ cts1
+ 1527
+ localhost
+ cts1
+
+
+ ${glassfish.home}/glassfish/bin/asadmin
+ ${project.build.directory}/glassfish7
+ ${glassfish.home}/glassfish/lib
+ ${glassfish.home}/javadb/lib
+
+
+ derby
+ org.apache.derby.jdbc.ClientDriver
+ ${javadb.lib}/derbyclient.jar:${javadb.lib}/derbyshared.jar:${javadb.lib}/derbytools.jar
+ 64
+ cts1
+ 32
+ jdbc:derby://localhost:1527/derbyDB;create=true
+ cts1
+
+ 5.9.1
+ cts1
+ cts1
+ ./sql
+ 11.0.0-SNAPSHOT
+ 1.0.0-M17
+
+
+
+
+
+ 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
+ connector
+ ${project.version}
+ test
+
+
+ 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
+ ${version.jakarta.tck.arquillian}
+
+
+ jakarta.tck.arquillian
+ arquillian-protocol-common
+ ${version.jakarta.tck.arquillian}
+
+
+ jakarta.tck.arquillian
+ arquillian-protocol-javatest
+ ${version.jakarta.tck.arquillian}
+
+
+ jakarta.tck.arquillian
+ arquillian-protocol-lib
+ ${version.jakarta.tck.arquillian}
+
+
+ jakarta.tck.arquillian
+ tck-porting-lib
+ ${version.jakarta.tck.arquillian}
+
+
+ org.omnifaces.arquillian
+ arquillian-glassfish-server-managed
+ 1.6
+ test
+
+
+ org.apache.derby
+ derbyclient
+ 10.15.2.0
+
+
+ org.apache.derby
+ derbytools
+ 10.15.2.0
+
+
+
+
+
+ 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
+
+
+ jakarta.tck.arquillian
+ arquillian-protocol-lib
+ true
+ ${project.build.directory}/protocol
+ protocol.jar
+
+
+
+
+
+
+
+ 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
+
+
+ 11-stop-domain
+
+ exec
+
+ pre-integration-test
+
+ ${exec.asadmin}
+
+ stop-domain
+
+
+
+
+ 12-start-domain
+
+ exec
+
+ pre-integration-test
+
+ ${exec.asadmin}
+
+ start-domain
+
+
+
+
+ 13-create-jvm-options
+
+ exec
+
+ pre-integration-test
+
+ ${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}
+
+
+
+
+ 14-create-file-user
+
+ exec
+
+ pre-integration-test
+
+ ${exec.asadmin}
+
+ create-file-user
+ --groups
+ staff:mgr:DIRECTOR
+ --passwordfile
+ ${project.basedir}/j2ee.pass
+ j2ee
+
+
+
+
+ 15-create-file-user
+
+ exec
+
+ pre-integration-test
+
+ ${exec.asadmin}
+
+ create-file-user
+ --groups
+ guest:OTHERROLE
+ --passwordfile
+ ${project.basedir}/javajoe.pass
+ javajoe
+
+
+
+
+ 24-deploy-whitebox-tx-connector
+
+ exec
+
+ pre-integration-test
+
+ ${exec.asadmin}
+
+ deploy
+ ${project.basedir}/connectors/whitebox/whitebox-tx.rar
+
+
+
+
+ 25-create-whitebox-tx-connector-pool
+
+ exec
+
+ pre-integration-test
+
+ ${exec.asadmin}
+
+ create-connector-connection-pool
+ --raname
+ whitebox-tx
+ --property
+ user=cts1:password=cts1:TSRValue=comp/TransactionSynchronizationRegistry
+ --connectiondefinition
+ com.sun.ts.tests.common.connector.whitebox.TSConnectionFactory
+ whitebox-tx-pool
+
+
+
+
+ 26-create-whitebox-tx-jndi
+
+ exec
+
+ pre-integration-test
+
+ ${exec.asadmin}
+
+ create-connector-resource
+ --poolname
+ whitebox-tx-pool
+ eis/whitebox-tx
+
+
+
+
+ 27-deploy-whitebox-xa-connector
+
+ exec
+
+ pre-integration-test
+
+ ${exec.asadmin}
+
+ deploy
+ ${project.basedir}/connectors/whitebox/whitebox-xa.rar
+
+
+
+
+ 28-create-whitebox-xa-connector-pool
+
+ exec
+
+ pre-integration-test
+
+ ${exec.asadmin}
+
+ create-connector-connection-pool
+ --raname
+ whitebox-xa
+ --property
+ user=cts1:password=cts1:TSRValue=comp/TransactionSynchronizationRegistry
+ --connectiondefinition
+ com.sun.ts.tests.common.connector.whitebox.TSConnectionFactory
+ whitebox-xa-pool
+
+
+
+
+ 29-create-whitebox-xa-jndi
+
+ exec
+
+ pre-integration-test
+
+ ${exec.asadmin}
+
+ create-connector-resource
+ --poolname
+ whitebox-xa-pool
+ eis/whitebox-xa
+
+
+
+
+ 30-deploy-whitebox-notx-connector
+
+ exec
+
+ pre-integration-test
+
+ ${exec.asadmin}
+
+ deploy
+ ${project.basedir}/connectors/whitebox/whitebox-notx.rar
+
+
+
+
+ 31-create-whitebox-notx-connector-pool
+
+ exec
+
+ pre-integration-test
+
+ ${exec.asadmin}
+
+ create-connector-connection-pool
+ --raname
+ whitebox-notx
+ --property
+ user=cts1:password=cts1:TSRValue=comp/TransactionSynchronizationRegistry
+ --connectiondefinition
+ com.sun.ts.tests.common.connector.whitebox.TSConnectionFactory
+ whitebox-notx-pool
+
+
+
+
+ 32-create-whitebox-notx-jndi
+
+ exec
+
+ pre-integration-test
+
+ ${exec.asadmin}
+
+ create-connector-resource
+ --poolname
+ whitebox-notx-pool
+ eis/whitebox-notx
+
+
+
+
+ 33-deploy-whitebox-mdcomplete-connector
+
+ exec
+
+ pre-integration-test
+
+ ${exec.asadmin}
+
+ deploy
+ ${project.basedir}/connectors/whitebox/mdcomplete/whitebox-mdcomplete.rar
+
+
+
+
+ 34-create-whitebox-mdcomplete-connector-pool
+
+ exec
+
+ pre-integration-test
+
+ ${exec.asadmin}
+
+ create-connector-connection-pool
+ --raname
+ whitebox-mdcomplete
+ --property
+ user=cts1:password=cts1:TSRValue=comp/TransactionSynchronizationRegistry
+ --connectiondefinition
+ com.sun.ts.tests.common.connector.whitebox.TSConnectionFactory
+ whitebox-mdcomplete-pool
+
+
+
+
+ 35-create-whitebox-mdcomplete-jndi
+
+ exec
+
+ pre-integration-test
+
+ ${exec.asadmin}
+
+ create-connector-resource
+ --poolname
+ whitebox-mdcomplete-pool
+ eis/whitebox-mdcomplete
+
+
+
+
+ 36-deploy-whitebox-anno_no_md-connector
+
+ exec
+
+ pre-integration-test
+
+ ${exec.asadmin}
+
+ deploy
+ ${project.basedir}/connectors/whitebox/annotated/whitebox-anno_no_md.rar
+
+
+
+
+ 37-create-whitebox-anno_no_md-connector-pool
+
+ exec
+
+ pre-integration-test
+
+ ${exec.asadmin}
+
+ create-connector-connection-pool
+ --raname
+ whitebox-anno_no_md
+ --property
+ user=cts1:password=cts1:TSRValue=comp/TransactionSynchronizationRegistry
+ --connectiondefinition
+ com.sun.ts.tests.common.connector.whitebox.TSConnectionFactory
+ whitebox-anno_no_md-pool
+
+
+
+
+ 38-create-whitebox-anno_no_md-jndi
+
+ exec
+
+ pre-integration-test
+
+ ${exec.asadmin}
+
+ create-connector-resource
+ --poolname
+ whitebox-anno_no_md-pool
+ eis/whitebox-anno_no_md
+
+
+
+
+ 39-deploy-whitebox-mixedmode-connector
+
+ exec
+
+ pre-integration-test
+
+ ${exec.asadmin}
+
+ deploy
+ ${project.basedir}/connectors/whitebox/mixedmode/whitebox-mixedmode.rar
+
+
+
+
+ 40-create-whitebox-mixedmode-connector-pool
+
+ exec
+
+ pre-integration-test
+
+ ${exec.asadmin}
+
+ create-connector-connection-pool
+ --raname
+ whitebox-mixedmode
+ --property
+ user=cts1:password=cts1:TSRValue=comp/TransactionSynchronizationRegistry
+ --connectiondefinition
+ com.sun.ts.tests.common.connector.whitebox.TSConnectionFactory
+ whitebox-mixedmode-pool
+
+
+
+
+ 41-create-whitebox-mixedmode-jndi
+
+ exec
+
+ pre-integration-test
+
+ ${exec.asadmin}
+
+ create-connector-resource
+ --poolname
+ whitebox-mixedmode-pool
+ eis/whitebox-mixedmode
+
+
+
+
+ 42-deploy-whitebox-multianno-connector
+
+ exec
+
+ pre-integration-test
+
+ ${exec.asadmin}
+
+ deploy
+ ${project.basedir}/connectors/whitebox/multianno/whitebox-multianno.rar
+
+
+
+
+ 43-create-whitebox-multianno-connector-pool
+
+ exec
+
+ pre-integration-test
+
+ ${exec.asadmin}
+
+ create-connector-connection-pool
+ --raname
+ whitebox-multianno
+ --property
+ user=cts1:password=cts1:TSRValue=comp/TransactionSynchronizationRegistry
+ --connectiondefinition
+ com.sun.ts.tests.common.connector.whitebox.TSConnectionFactory
+ whitebox-multianno-pool
+
+
+
+
+ 44-create-whitebox-multianno-jndi
+
+ exec
+
+ pre-integration-test
+
+ ${exec.asadmin}
+
+ create-connector-resource
+ --poolname
+ whitebox-multianno-pool
+ eis/whitebox-multianno
+
+
+
+
+ 45-deploy-whitebox-tx-param-connector
+
+ exec
+
+ pre-integration-test
+
+ ${exec.asadmin}
+
+ deploy
+ ${project.basedir}/connectors/whitebox/whitebox-tx-param.rar
+
+
+
+
+ 46-create-whitebox-tx-param-connector-pool
+
+ exec
+
+ pre-integration-test
+
+ ${exec.asadmin}
+
+ create-connector-connection-pool
+ --raname
+ whitebox-tx-param
+ --property
+ user=cts1:password=cts1:TSRValue=comp/TransactionSynchronizationRegistry
+ --connectiondefinition
+ com.sun.ts.tests.common.connector.whitebox.TSConnectionFactory
+ whitebox-tx-param-pool
+
+
+
+
+ 47-create-whitebox-tx-param-jndi
+
+ exec
+
+ pre-integration-test
+
+ ${exec.asadmin}
+
+ create-connector-resource
+ --poolname
+ whitebox-tx-param-pool
+ eis/whitebox-tx-param
+
+
+
+
+ 48-deploy-whitebox-notx-param-connector
+
+ exec
+
+ pre-integration-test
+
+ ${exec.asadmin}
+
+ deploy
+ ${project.basedir}/connectors/whitebox/whitebox-notx-param.rar
+
+
+
+
+ 49-create-whitebox-notx-param-connector-pool
+
+ exec
+
+ pre-integration-test
+
+ ${exec.asadmin}
+
+ create-connector-connection-pool
+ --raname
+ whitebox-notx-param
+ --property
+ user=cts1:password=cts1:TSRValue=comp/TransactionSynchronizationRegistry
+ --connectiondefinition
+ com.sun.ts.tests.common.connector.whitebox.TSConnectionFactory
+ whitebox-notx-param-pool
+
+
+
+
+ 50-create-whitebox-notx-param-jndi
+
+ exec
+
+ pre-integration-test
+
+ ${exec.asadmin}
+
+ create-connector-resource
+ --poolname
+ whitebox-notx-param-pool
+ eis/whitebox-notx-param
+
+
+
+
+ 51-deploy-whitebox-xa-param-connector
+
+ exec
+
+ pre-integration-test
+
+ ${exec.asadmin}
+
+ deploy
+ ${project.basedir}/connectors/whitebox/whitebox-xa-param.rar
+
+
+
+
+ 52-create-whitebox-xa-param-connector-pool
+
+ exec
+
+ pre-integration-test
+
+ ${exec.asadmin}
+
+ create-connector-connection-pool
+ --raname
+ whitebox-xa-param
+ --property
+ user=cts1:password=cts1:TSRValue=comp/TransactionSynchronizationRegistry
+ --connectiondefinition
+ com.sun.ts.tests.common.connector.whitebox.TSConnectionFactory
+ whitebox-xa-param-pool
+
+
+
+
+ 53-create-whitebox-xa-param-jndi
+
+ exec
+
+ pre-integration-test
+
+ ${exec.asadmin}
+
+ create-connector-resource
+ --poolname
+ whitebox-xa-param-pool
+ eis/whitebox-xa-param
+
+
+
+
+ 90-stop-domain
+
+ exec
+
+ pre-integration-test
+
+ ${exec.asadmin}
+
+ stop-domain
+
+
+
+
+
+
+ maven-failsafe-plugin
+ 3.0.0-M5
+
+
+ connector-javatest-tests
+
+ integration-test
+ verify
+
+
+ jakarta.tck:connector
+
+ ${project.build.directory}/${glassfish.toplevel.dir}/javadb/lib/derbytools.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}/glassfish/modules/glassfish-naming.jar
+
+
+ ${project.build.directory}/${glassfish.toplevel.dir}
+ ${env.TS_HOME}
+ ${project.basedir}
+ arquillian.xml
+
+
+ **/*Servlet*Test*.*
+ **/*Jsp*Test*.*
+
+
+
+
+
+
+ maven-failsafe-plugin
+ 3.0.0-M5
+
+
+ connector-ejb-tests
+
+ integration-test
+ verify
+
+
+ jakarta.tck:connector
+
+ ${project.build.directory}/${glassfish.toplevel.dir}/javadb/lib/derbytools.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}/glassfish/modules/glassfish-naming.jar
+
+
+ ${project.build.directory}/${glassfish.toplevel.dir}
+ com.sun.enterprise.naming.impl.SerialInitContextFactory
+ ${env.TS_HOME}
+ ${project.basedir}
+ appclient-arquillian.xml
+
+
+ **/*EJB*Test.*
+
+
+
+
+
+
+
+
+
+ full
+
+ true
+
+
+ glassfish
+
+
+
+ web
+
+ web
+
+
+
+
diff --git a/glassfish-runner/connector-platform-tck/run.log b/glassfish-runner/connector-platform-tck/run.log
new file mode 100644
index 0000000000..48be221f31
--- /dev/null
+++ b/glassfish-runner/connector-platform-tck/run.log
@@ -0,0 +1,30847 @@
+[[1;33mWARNING[m] Cache requires Maven >= 3.9, but version is 3.8.7. Disabling cache.
+[[1;34mINFO[m] Scanning for projects...
+[[1;33mWARNING[m]
+[[1;33mWARNING[m] Some problems were encountered while building the effective model for jakarta.tck:glassfish.connector-platform-tck:jar:11.0.0-SNAPSHOT
+[[1;33mWARNING[m] 'build.plugins.plugin.(groupId:artifactId)' must be unique but found duplicate declaration of plugin org.codehaus.mojo:exec-maven-plugin @ line 279, column 21
+[[1;33mWARNING[m] '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
+[[1;33mWARNING[m]
+[[1;33mWARNING[m] It is highly recommended to fix these problems because they threaten the stability of your build.
+[[1;33mWARNING[m]
+[[1;33mWARNING[m] For this reason, future Maven versions might no longer support building such malformed projects.
+[[1;33mWARNING[m]
+[[1;34mINFO[m]
+[[1;34mINFO[m] [1m------------< [0;36mjakarta.tck:glassfish.connector-platform-tck[0;1m >------------[m
+[[1;34mINFO[m] [1mBuilding glassfish.connector-platform-tck 11.0.0-SNAPSHOT[m
+[[1;34mINFO[m] [1m--------------------------------[ jar ]---------------------------------[m
+[[1;34mINFO[m]
+[[1;34mINFO[m] [1m--- [0;32mmaven-clean-plugin:3.2.0:clean[m [1m(default-clean)[m @ [36mglassfish.connector-platform-tck[0;1m ---[m
+[[1;34mINFO[m] Deleting /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target
+[[1;34mINFO[m]
+[[1;34mINFO[m] [1m--- [0;32mmaven-enforcer-plugin:3.0.0:enforce[m [1m(enforce-maven)[m @ [36mglassfish.connector-platform-tck[0;1m ---[m
+[[1;34mINFO[m]
+[[1;34mINFO[m] [1m--- [0;32mspotless-maven-plugin:2.36.0:check[m [1m(check-spotless-poms)[m @ [36mglassfish.connector-platform-tck[0;1m ---[m
+[[1;34mINFO[m] Index file does not exist. Fallback to an empty index
+[[1;34mINFO[m] Sorting file /tmp/pom12632559228354469526.xml
+[[1;34mINFO[m] Pom file is already sorted, exiting
+[[1;34mINFO[m] Sorting file /tmp/pom14153826683448017707.xml
+[[1;34mINFO[m] Pom file is already sorted, exiting
+[[1;34mINFO[m] 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
+[[1;34mINFO[m]
+[[1;34mINFO[m] [1m--- [0;32mmaven-resources-plugin:3.0.2:copy-resources[m [1m(copy-resource-one)[m @ [36mglassfish.connector-platform-tck[0;1m ---[m
+[[1;34mINFO[m] Using 'UTF-8' encoding to copy filtered resources.
+[[1;34mINFO[m] Copying 1 resource
+[[1;34mINFO[m]
+[[1;34mINFO[m] [1m--- [0;32mmaven-resources-plugin:3.0.2:resources[m [1m(default-resources)[m @ [36mglassfish.connector-platform-tck[0;1m ---[m
+[[1;34mINFO[m] Using 'UTF-8' encoding to copy filtered resources.
+[[1;34mINFO[m] skip non existing resourceDirectory /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/src/main/resources
+[[1;34mINFO[m]
+[[1;34mINFO[m] [1m--- [0;32mmaven-compiler-plugin:3.12.1:compile[m [1m(default-compile)[m @ [36mglassfish.connector-platform-tck[0;1m ---[m
+[[1;34mINFO[m] No sources to compile
+[[1;34mINFO[m]
+[[1;34mINFO[m] [1m--- [0;32mmaven-resources-plugin:3.0.2:testResources[m [1m(default-testResources)[m @ [36mglassfish.connector-platform-tck[0;1m ---[m
+[[1;34mINFO[m] Using 'UTF-8' encoding to copy filtered resources.
+[[1;34mINFO[m] Copying 4 resources
+[[1;34mINFO[m]
+[[1;34mINFO[m] [1m--- [0;32mmaven-compiler-plugin:3.12.1:testCompile[m [1m(default-testCompile)[m @ [36mglassfish.connector-platform-tck[0;1m ---[m
+[[1;34mINFO[m] Recompiling the module because of [1mchanged source code[m.
+[[1;34mINFO[m] Compiling 2 source files with javac [debug release 17] to target/test-classes
+[[1;34mINFO[m]
+[[1;34mINFO[m] [1m--- [0;32mmaven-surefire-plugin:3.0.0:test[m [1m(default-test)[m @ [36mglassfish.connector-platform-tck[0;1m ---[m
+[[1;34mINFO[m]
+[[1;34mINFO[m] [1m--- [0;32mmaven-jar-plugin:3.4.2:jar[m [1m(default-jar)[m @ [36mglassfish.connector-platform-tck[0;1m ---[m
+[[1;33mWARNING[m] JAR will be empty - no content was marked for inclusion!
+[[1;34mINFO[m] Building jar: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish.connector-platform-tck-11.0.0-SNAPSHOT.jar
+[[1;34mINFO[m]
+[[1;34mINFO[m] [1m--- [0;32mcyclonedx-maven-plugin:2.7.9:makeAggregateBom[m [1m(default)[m @ [36mglassfish.connector-platform-tck[0;1m ---[m
+[[1;34mINFO[m] CycloneDX: Resolving Dependencies
+Downloading from maven-default-http-blocker: http://0.0.0.0/jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml
+[[1;33mWARNING[m] 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
+[[1;33mWARNING[m] 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
+[[1;33mWARNING[m] 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
+[[1;34mINFO[m] CycloneDX: Creating BOM version 1.4 with 97 component(s)
+[[1;34mINFO[m] CycloneDX: Writing and validating BOM (XML): /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/bom.xml
+[[1;34mINFO[m] attaching as glassfish.connector-platform-tck-11.0.0-SNAPSHOT-cyclonedx.xml
+[[1;34mINFO[m] CycloneDX: Writing and validating BOM (JSON): /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/bom.json
+[[1;33mWARNING[m] Unknown keyword additionalItems - you should define your own Meta Schema. If the keyword is irrelevant for validation, just use a NonValidationKeyword
+[[1;34mINFO[m] attaching as glassfish.connector-platform-tck-11.0.0-SNAPSHOT-cyclonedx.json
+[[1;34mINFO[m]
+[[1;34mINFO[m] [1m--- [0;32mmaven-dependency-plugin:3.2.0:unpack[m [1m(1-unpack)[m @ [36mglassfish.connector-platform-tck[0;1m ---[m
+[[1;34mINFO[m] Configured Artifact: org.glassfish.main.distributions:glassfish:7.0.0:zip
+[[1;34mINFO[m] 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 ""
+[[1;34mINFO[m]
+[[1;34mINFO[m] [1m--- [0;32mmaven-dependency-plugin:3.2.0:copy[m [1m(2-copy-lib)[m @ [36mglassfish.connector-platform-tck[0;1m ---[m
+[[1;34mINFO[m] Configured Artifact: jakarta.tck.arquillian:arquillian-protocol-lib:?:jar
+[[1;34mINFO[m] Configured Artifact: jakarta.tck:libutil:?:jar
+[[1;34mINFO[m] Configured Artifact: jakarta.tck.arquillian:tck-porting-lib:?:jar
+[[1;34mINFO[m] Configured Artifact: jakarta.tck:runtime:?:jar
+[[1;34mINFO[m] Configured Artifact: jakarta.tck.arquillian:arquillian-protocol-lib:?:jar
+[[1;34mINFO[m] 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
+[[1;34mINFO[m] 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
+[[1;34mINFO[m] 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
+[[1;34mINFO[m] 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
+[[1;34mINFO[m] 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
+[[1;34mINFO[m]
+[[1;34mINFO[m] [1m--- [0;32mexec-maven-plugin:3.2.0:exec[m [1m(1-start-database)[m @ [36mglassfish.connector-platform-tck[0;1m ---[m
+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.
+[[1;34mINFO[m]
+[[1;34mINFO[m] [1m--- [0;32mexec-maven-plugin:3.2.0:exec[m [1m(11-stop-domain)[m @ [36mglassfish.connector-platform-tck[0;1m ---[m
+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.
+[[1;34mINFO[m]
+[[1;34mINFO[m] [1m--- [0;32mexec-maven-plugin:3.2.0:exec[m [1m(12-start-domain)[m @ [36mglassfish.connector-platform-tck[0;1m ---[m
+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.
+[[1;34mINFO[m]
+[[1;34mINFO[m] [1m--- [0;32mexec-maven-plugin:3.2.0:exec[m [1m(13-create-jvm-options)[m @ [36mglassfish.connector-platform-tck[0;1m ---[m
+Created 6 option(s)
+Command create-jvm-options executed successfully.
+[[1;34mINFO[m]
+[[1;34mINFO[m] [1m--- [0;32mexec-maven-plugin:3.2.0:exec[m [1m(14-create-file-user)[m @ [36mglassfish.connector-platform-tck[0;1m ---[m
+Command create-file-user executed successfully.
+[[1;34mINFO[m]
+[[1;34mINFO[m] [1m--- [0;32mexec-maven-plugin:3.2.0:exec[m [1m(15-create-file-user)[m @ [36mglassfish.connector-platform-tck[0;1m ---[m
+Command create-file-user executed successfully.
+[[1;34mINFO[m]
+[[1;34mINFO[m] [1m--- [0;32mexec-maven-plugin:3.2.0:exec[m [1m(24-deploy-whitebox-tx-connector)[m @ [36mglassfish.connector-platform-tck[0;1m ---[m
+Application deployed with name whitebox-tx.
+Command deploy executed successfully.
+[[1;34mINFO[m]
+[[1;34mINFO[m] [1m--- [0;32mexec-maven-plugin:3.2.0:exec[m [1m(25-create-whitebox-tx-connector-pool)[m @ [36mglassfish.connector-platform-tck[0;1m ---[m
+Connector connection pool whitebox-tx-pool created.
+Command create-connector-connection-pool executed successfully.
+[[1;34mINFO[m]
+[[1;34mINFO[m] [1m--- [0;32mexec-maven-plugin:3.2.0:exec[m [1m(26-create-whitebox-tx-jndi)[m @ [36mglassfish.connector-platform-tck[0;1m ---[m
+Connector resource eis/whitebox-tx created.
+Command create-connector-resource executed successfully.
+[[1;34mINFO[m]
+[[1;34mINFO[m] [1m--- [0;32mexec-maven-plugin:3.2.0:exec[m [1m(27-deploy-whitebox-xa-connector)[m @ [36mglassfish.connector-platform-tck[0;1m ---[m
+Application deployed with name whitebox-xa.
+Command deploy executed successfully.
+[[1;34mINFO[m]
+[[1;34mINFO[m] [1m--- [0;32mexec-maven-plugin:3.2.0:exec[m [1m(28-create-whitebox-xa-connector-pool)[m @ [36mglassfish.connector-platform-tck[0;1m ---[m
+Connector connection pool whitebox-xa-pool created.
+Command create-connector-connection-pool executed successfully.
+[[1;34mINFO[m]
+[[1;34mINFO[m] [1m--- [0;32mexec-maven-plugin:3.2.0:exec[m [1m(29-create-whitebox-xa-jndi)[m @ [36mglassfish.connector-platform-tck[0;1m ---[m
+Connector resource eis/whitebox-xa created.
+Command create-connector-resource executed successfully.
+[[1;34mINFO[m]
+[[1;34mINFO[m] [1m--- [0;32mexec-maven-plugin:3.2.0:exec[m [1m(30-deploy-whitebox-notx-connector)[m @ [36mglassfish.connector-platform-tck[0;1m ---[m
+Application deployed with name whitebox-notx.
+Command deploy executed successfully.
+[[1;34mINFO[m]
+[[1;34mINFO[m] [1m--- [0;32mexec-maven-plugin:3.2.0:exec[m [1m(31-create-whitebox-notx-connector-pool)[m @ [36mglassfish.connector-platform-tck[0;1m ---[m
+Connector connection pool whitebox-notx-pool created.
+Command create-connector-connection-pool executed successfully.
+[[1;34mINFO[m]
+[[1;34mINFO[m] [1m--- [0;32mexec-maven-plugin:3.2.0:exec[m [1m(32-create-whitebox-notx-jndi)[m @ [36mglassfish.connector-platform-tck[0;1m ---[m
+Connector resource eis/whitebox-notx created.
+Command create-connector-resource executed successfully.
+[[1;34mINFO[m]
+[[1;34mINFO[m] [1m--- [0;32mexec-maven-plugin:3.2.0:exec[m [1m(33-deploy-whitebox-mdcomplete-connector)[m @ [36mglassfish.connector-platform-tck[0;1m ---[m
+Application deployed with name whitebox-mdcomplete.
+Command deploy executed successfully.
+[[1;34mINFO[m]
+[[1;34mINFO[m] [1m--- [0;32mexec-maven-plugin:3.2.0:exec[m [1m(34-create-whitebox-mdcomplete-connector-pool)[m @ [36mglassfish.connector-platform-tck[0;1m ---[m
+Connector connection pool whitebox-mdcomplete-pool created.
+Command create-connector-connection-pool executed successfully.
+[[1;34mINFO[m]
+[[1;34mINFO[m] [1m--- [0;32mexec-maven-plugin:3.2.0:exec[m [1m(35-create-whitebox-mdcomplete-jndi)[m @ [36mglassfish.connector-platform-tck[0;1m ---[m
+Connector resource eis/whitebox-mdcomplete created.
+Command create-connector-resource executed successfully.
+[[1;34mINFO[m]
+[[1;34mINFO[m] [1m--- [0;32mexec-maven-plugin:3.2.0:exec[m [1m(36-deploy-whitebox-anno_no_md-connector)[m @ [36mglassfish.connector-platform-tck[0;1m ---[m
+Application deployed with name whitebox-anno_no_md.
+Command deploy executed successfully.
+[[1;34mINFO[m]
+[[1;34mINFO[m] [1m--- [0;32mexec-maven-plugin:3.2.0:exec[m [1m(37-create-whitebox-anno_no_md-connector-pool)[m @ [36mglassfish.connector-platform-tck[0;1m ---[m
+Connector connection pool whitebox-anno_no_md-pool created.
+Command create-connector-connection-pool executed successfully.
+[[1;34mINFO[m]
+[[1;34mINFO[m] [1m--- [0;32mexec-maven-plugin:3.2.0:exec[m [1m(38-create-whitebox-anno_no_md-jndi)[m @ [36mglassfish.connector-platform-tck[0;1m ---[m
+Connector resource eis/whitebox-anno_no_md created.
+Command create-connector-resource executed successfully.
+[[1;34mINFO[m]
+[[1;34mINFO[m] [1m--- [0;32mexec-maven-plugin:3.2.0:exec[m [1m(39-deploy-whitebox-mixedmode-connector)[m @ [36mglassfish.connector-platform-tck[0;1m ---[m
+Application deployed with name whitebox-mixedmode.
+Command deploy executed successfully.
+[[1;34mINFO[m]
+[[1;34mINFO[m] [1m--- [0;32mexec-maven-plugin:3.2.0:exec[m [1m(40-create-whitebox-mixedmode-connector-pool)[m @ [36mglassfish.connector-platform-tck[0;1m ---[m
+Connector connection pool whitebox-mixedmode-pool created.
+Command create-connector-connection-pool executed successfully.
+[[1;34mINFO[m]
+[[1;34mINFO[m] [1m--- [0;32mexec-maven-plugin:3.2.0:exec[m [1m(41-create-whitebox-mixedmode-jndi)[m @ [36mglassfish.connector-platform-tck[0;1m ---[m
+Connector resource eis/whitebox-mixedmode created.
+Command create-connector-resource executed successfully.
+[[1;34mINFO[m]
+[[1;34mINFO[m] [1m--- [0;32mexec-maven-plugin:3.2.0:exec[m [1m(42-deploy-whitebox-multianno-connector)[m @ [36mglassfish.connector-platform-tck[0;1m ---[m
+Application deployed with name whitebox-multianno.
+Command deploy executed successfully.
+[[1;34mINFO[m]
+[[1;34mINFO[m] [1m--- [0;32mexec-maven-plugin:3.2.0:exec[m [1m(43-create-whitebox-multianno-connector-pool)[m @ [36mglassfish.connector-platform-tck[0;1m ---[m
+Connector connection pool whitebox-multianno-pool created.
+Command create-connector-connection-pool executed successfully.
+[[1;34mINFO[m]
+[[1;34mINFO[m] [1m--- [0;32mexec-maven-plugin:3.2.0:exec[m [1m(44-create-whitebox-multianno-jndi)[m @ [36mglassfish.connector-platform-tck[0;1m ---[m
+Connector resource eis/whitebox-multianno created.
+Command create-connector-resource executed successfully.
+[[1;34mINFO[m]
+[[1;34mINFO[m] [1m--- [0;32mexec-maven-plugin:3.2.0:exec[m [1m(45-deploy-whitebox-tx-param-connector)[m @ [36mglassfish.connector-platform-tck[0;1m ---[m
+Application deployed with name whitebox-tx-param.
+Command deploy executed successfully.
+[[1;34mINFO[m]
+[[1;34mINFO[m] [1m--- [0;32mexec-maven-plugin:3.2.0:exec[m [1m(46-create-whitebox-tx-param-connector-pool)[m @ [36mglassfish.connector-platform-tck[0;1m ---[m
+Connector connection pool whitebox-tx-param-pool created.
+Command create-connector-connection-pool executed successfully.
+[[1;34mINFO[m]
+[[1;34mINFO[m] [1m--- [0;32mexec-maven-plugin:3.2.0:exec[m [1m(47-create-whitebox-tx-param-jndi)[m @ [36mglassfish.connector-platform-tck[0;1m ---[m
+Connector resource eis/whitebox-tx-param created.
+Command create-connector-resource executed successfully.
+[[1;34mINFO[m]
+[[1;34mINFO[m] [1m--- [0;32mexec-maven-plugin:3.2.0:exec[m [1m(48-deploy-whitebox-notx-param-connector)[m @ [36mglassfish.connector-platform-tck[0;1m ---[m
+Application deployed with name whitebox-notx-param.
+Command deploy executed successfully.
+[[1;34mINFO[m]
+[[1;34mINFO[m] [1m--- [0;32mexec-maven-plugin:3.2.0:exec[m [1m(49-create-whitebox-notx-param-connector-pool)[m @ [36mglassfish.connector-platform-tck[0;1m ---[m
+Connector connection pool whitebox-notx-param-pool created.
+Command create-connector-connection-pool executed successfully.
+[[1;34mINFO[m]
+[[1;34mINFO[m] [1m--- [0;32mexec-maven-plugin:3.2.0:exec[m [1m(50-create-whitebox-notx-param-jndi)[m @ [36mglassfish.connector-platform-tck[0;1m ---[m
+Connector resource eis/whitebox-notx-param created.
+Command create-connector-resource executed successfully.
+[[1;34mINFO[m]
+[[1;34mINFO[m] [1m--- [0;32mexec-maven-plugin:3.2.0:exec[m [1m(51-deploy-whitebox-xa-param-connector)[m @ [36mglassfish.connector-platform-tck[0;1m ---[m
+Application deployed with name whitebox-xa-param.
+Command deploy executed successfully.
+[[1;34mINFO[m]
+[[1;34mINFO[m] [1m--- [0;32mexec-maven-plugin:3.2.0:exec[m [1m(52-create-whitebox-xa-param-connector-pool)[m @ [36mglassfish.connector-platform-tck[0;1m ---[m
+Connector connection pool whitebox-xa-param-pool created.
+Command create-connector-connection-pool executed successfully.
+[[1;34mINFO[m]
+[[1;34mINFO[m] [1m--- [0;32mexec-maven-plugin:3.2.0:exec[m [1m(53-create-whitebox-xa-param-jndi)[m @ [36mglassfish.connector-platform-tck[0;1m ---[m
+Connector resource eis/whitebox-xa-param created.
+Command create-connector-resource executed successfully.
+[[1;34mINFO[m]
+[[1;34mINFO[m] [1m--- [0;32mexec-maven-plugin:3.2.0:exec[m [1m(90-stop-domain)[m @ [36mglassfish.connector-platform-tck[0;1m ---[m
+Waiting for the domain to stop .
+Waiting finished after 176 ms.
+Command stop-domain executed successfully.
+[[1;34mINFO[m]
+[[1;34mINFO[m] [1m--- [0;32mmaven-failsafe-plugin:3.0.0-M5:integration-test[m [1m(connector-javatest-tests)[m @ [36mglassfish.connector-platform-tck[0;1m ---[m
+[[1;34mINFO[m]
+[[1;34mINFO[m] -------------------------------------------------------
+[[1;34mINFO[m] T E S T S
+[[1;34mINFO[m] -------------------------------------------------------
+[[1;31mERROR[m] WARNING: package com.sun.ts.tests.connector.noTx.lifecycle not in glassfish.connector.platform.tck
+[[1;31mERROR[m] WARNING: package com.sun.ts.tests.connector.localTx.connection not in glassfish.connector.platform.tck
+[[1;31mERROR[m] WARNING: package com.sun.ts.tests.connector.localTx.workmgt not in glassfish.connector.platform.tck
+[[1;31mERROR[m] WARNING: package com.sun.ts.tests.connector.connManager not in glassfish.connector.platform.tck
+[[1;31mERROR[m] WARNING: package com.sun.ts.tests.connector.annotations.anno not in glassfish.connector.platform.tck
+[[1;31mERROR[m] WARNING: package com.sun.ts.tests.connector.permissiondd not in glassfish.connector.platform.tck
+[[1;31mERROR[m] WARNING: package com.sun.ts.tests.connector.noTx.connection not in glassfish.connector.platform.tck
+[[1;31mERROR[m] WARNING: package com.sun.ts.tests.connector.localTx.event not in glassfish.connector.platform.tck
+[[1;31mERROR[m] WARNING: package com.sun.ts.tests.connector.noTx.event not in glassfish.connector.platform.tck
+[[1;31mERROR[m] WARNING: package com.sun.ts.tests.connector.annotations.partialanno not in glassfish.connector.platform.tck
+[[1;31mERROR[m] WARNING: package com.sun.ts.tests.connector.xa.workmgt not in glassfish.connector.platform.tck
+[[1;31mERROR[m] WARNING: package com.sun.ts.tests.connector.localTx.security not in glassfish.connector.platform.tck
+[[1;31mERROR[m] WARNING: package com.sun.ts.tests.connector.localTx.msginflow not in glassfish.connector.platform.tck
+[[1;31mERROR[m] WARNING: package com.sun.ts.tests.connector.localTx.workcontext not in glassfish.connector.platform.tck
+[[1;31mERROR[m] WARNING: package com.sun.ts.tests.connector.xa.connection not in glassfish.connector.platform.tck
+[[1;31mERROR[m] WARNING: package com.sun.ts.tests.connector.noTx.workmgt not in glassfish.connector.platform.tck
+[[1;31mERROR[m] WARNING: package com.sun.ts.tests.connector.xa.event not in glassfish.connector.platform.tck
+[[1;31mERROR[m] WARNING: package com.sun.ts.tests.connector.annotations.mdcomplete not in glassfish.connector.platform.tck
+[[1;31mERROR[m] WARNING: package com.sun.ts.tests.connector.localTx.transinflow not in glassfish.connector.platform.tck
+[[1;31mERROR[m] WARNING: package com.sun.ts.tests.connector.xa.lifecycle not in glassfish.connector.platform.tck
+[[1;31mERROR[m] WARNING: package com.sun.ts.tests.connector.localTx.lifecycle not in glassfish.connector.platform.tck
+[[1;31mERROR[m] WARNING: package com.sun.ts.tests.connector.xa.security not in glassfish.connector.platform.tck
+[[1;31mERROR[m] WARNING: package com.sun.ts.tests.connector.noTx.security not in glassfish.connector.platform.tck
+[[1;34mINFO[m] Running com.sun.ts.tests.connector.annotations.anno.[1mannotationClientJspTest[m
+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]
+[[1;31mERROR[m] [1;31mTests [0;1mrun: [0;1m1[m, Failures: 0, [1;31mErrors: [0;1;31m1[m, Skipped: 0, Time elapsed: 27.19 s[1;31m <<< FAILURE![m - in com.sun.ts.tests.connector.annotations.anno.[1mannotationClientJspTest[m
+[[1;31mERROR[m] 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]
+
+[[1;34mINFO[m] Running com.sun.ts.tests.connector.annotations.anno.[1mannotationClientServletTest[m
+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
+[[1;31mERROR[m] [1;31mTests [0;1mrun: [0;1m4[m, Failures: 0, [1;31mErrors: [0;1;31m1[m, Skipped: 0, Time elapsed: 36.546 s[1;31m <<< FAILURE![m - in com.sun.ts.tests.connector.annotations.anno.[1mannotationClientServletTest[m
+[[1;31mERROR[m] 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
+
+[[1;34mINFO[m] Running com.sun.ts.tests.connector.annotations.mdcomplete.[1mClientJspTest[m
+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
+[[1;34mINFO[m] [1;32mTests run: [0;1;32m2[m, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 16.201 s - in com.sun.ts.tests.connector.annotations.mdcomplete.[1mClientJspTest[m
+[[1;34mINFO[m] Running com.sun.ts.tests.connector.annotations.mdcomplete.[1mClientServletTest[m
+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
+[[1;34mINFO[m] [1;32mTests run: [0;1;32m2[m, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 4.928 s - in com.sun.ts.tests.connector.annotations.mdcomplete.[1mClientServletTest[m
+[[1;34mINFO[m] Running com.sun.ts.tests.connector.annotations.partialanno.[1mpaClientJspTest[m
+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
+[[1;34mINFO[m] [1;32mTests run: [0;1;32m6[m, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 5.702 s - in com.sun.ts.tests.connector.annotations.partialanno.[1mpaClientJspTest[m
+[[1;34mINFO[m] Running com.sun.ts.tests.connector.annotations.partialanno.[1mpaClientServletTest[m
+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
+[[1;34mINFO[m] [1;32mTests run: [0;1;32m6[m, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 14.721 s - in com.sun.ts.tests.connector.annotations.partialanno.[1mpaClientServletTest[m
+[[1;34mINFO[m] Running com.sun.ts.tests.connector.connManager.[1mconnManagerClient1JspTest[m
+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
+[[1;34mINFO[m] [1;32mTests run: [0;1;32m2[m, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 24.697 s - in com.sun.ts.tests.connector.connManager.[1mconnManagerClient1JspTest[m
+[[1;34mINFO[m] Running com.sun.ts.tests.connector.connManager.[1mconnManagerClient1ServletTest[m
+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
+[[1;34mINFO[m] [1;32mTests run: [0;1;32m2[m, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 14.435 s - in com.sun.ts.tests.connector.connManager.[1mconnManagerClient1ServletTest[m
+[[1;34mINFO[m] Running com.sun.ts.tests.connector.localTx.connection.[1mconnectionClient1JspTest[m
+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
+[[1;31mERROR[m] [1;31mTests [0;1mrun: [0;1m23[m, Failures: 0, [1;31mErrors: [0;1;31m1[m, Skipped: 0, Time elapsed: 13.126 s[1;31m <<< FAILURE![m - in com.sun.ts.tests.connector.localTx.connection.[1mconnectionClient1JspTest[m
+[[1;31mERROR[m] 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
+
+[[1;34mINFO[m] Running com.sun.ts.tests.connector.localTx.connection.[1mconnectionClient1ServletTest[m
+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
+[[1;31mERROR[m] [1;31mTests [0;1mrun: [0;1m23[m, Failures: 0, [1;31mErrors: [0;1;31m1[m, Skipped: 0, Time elapsed: 7.444 s[1;31m <<< FAILURE![m - in com.sun.ts.tests.connector.localTx.connection.[1mconnectionClient1ServletTest[m
+[[1;31mERROR[m] 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
+
+[[1;34mINFO[m] Running com.sun.ts.tests.connector.localTx.event.[1meventClient1JspTest[m
+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
+[[1;34mINFO[m] [1;32mTests run: [0;1;32m1[m, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 5.776 s - in com.sun.ts.tests.connector.localTx.event.[1meventClient1JspTest[m
+[[1;34mINFO[m] Running com.sun.ts.tests.connector.localTx.event.[1meventClient1ServletTest[m
+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
+[[1;34mINFO[m] [1;32mTests run: [0;1;32m1[m, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 6.988 s - in com.sun.ts.tests.connector.localTx.event.[1meventClient1ServletTest[m
+[[1;34mINFO[m] Running com.sun.ts.tests.connector.localTx.lifecycle.[1mlifecycleClient1JspTest[m
+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
+[[1;31mERROR[m] [1;31mTests [0;1mrun: [0;1m7[m, Failures: 0, [1;31mErrors: [0;1;31m6[m, Skipped: 0, Time elapsed: 6.365 s[1;31m <<< FAILURE![m - in com.sun.ts.tests.connector.localTx.lifecycle.[1mlifecycleClient1JspTest[m
+[[1;31mERROR[m] 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
+
+[[1;31mERROR[m] 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
+
+[[1;31mERROR[m] 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
+
+[[1;31mERROR[m] 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
+
+[[1;31mERROR[m] 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
+
+[[1;31mERROR[m] 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
+
+[[1;34mINFO[m] Running com.sun.ts.tests.connector.localTx.lifecycle.[1mlifecycleClient1ServletTest[m
+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
+[[1;31mERROR[m] [1;31mTests [0;1mrun: [0;1m7[m, Failures: 0, [1;31mErrors: [0;1;31m6[m, Skipped: 0, Time elapsed: 6.538 s[1;31m <<< FAILURE![m - in com.sun.ts.tests.connector.localTx.lifecycle.[1mlifecycleClient1ServletTest[m
+[[1;31mERROR[m] 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
+
+[[1;31mERROR[m] 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
+
+[[1;31mERROR[m] 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
+
+[[1;31mERROR[m] 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
+
+[[1;31mERROR[m] 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
+
+[[1;31mERROR[m] 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
+
+[[1;34mINFO[m] Running com.sun.ts.tests.connector.localTx.msginflow.[1mMDBClientJspTest[m
+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]
+[[1;31mERROR[m] [1;31mTests [0;1mrun: [0;1m1[m, Failures: 0, [1;31mErrors: [0;1;31m1[m, Skipped: 0, Time elapsed: 6.465 s[1;31m <<< FAILURE![m - in com.sun.ts.tests.connector.localTx.msginflow.[1mMDBClientJspTest[m
+[[1;31mERROR[m] 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]
+
+[[1;34mINFO[m] Running com.sun.ts.tests.connector.localTx.msginflow.[1mMDBClientServletTest[m
+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]
+[[1;31mERROR[m] [1;31mTests [0;1mrun: [0;1m1[m, Failures: 0, [1;31mErrors: [0;1;31m1[m, Skipped: 0, Time elapsed: 4.401 s[1;31m <<< FAILURE![m - in com.sun.ts.tests.connector.localTx.msginflow.[1mMDBClientServletTest[m
+[[1;31mERROR[m] 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]
+
+[[1;34mINFO[m] Running com.sun.ts.tests.connector.localTx.security.[1msecurityClient1JspTest[m
+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 {