java.lang.AssertionError: Failed to generate class for weblogic.jdbc.common.internal.RmiDataSource_1036_WLStub at weblogic.rmi.internal.StubGenerator.generateStub(StubGenerator.java:797) at weblogic.rmi.internal.StubGenerator.generateStub(StubGenerator.java:786) at weblogic.rmi.extensions.StubFactory.getStub(StubFactory.java:74) at weblogic.rmi.internal.StubInfo.resolveObject(StubInfo.java:213) at weblogic.rmi.internal.StubInfo.readResolve(StubInfo.java:207) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at java.io.ObjectStreamClass.invokeReadResolve(ObjectStreamClass.java:1061) at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1761) at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1328) at java.io.ObjectInputStream.readObject(ObjectInputStream.java:350) at weblogic.utils.io.ChunkedObjectInputStream.readObject(ChunkedObjectInputStream.java:197) at weblogic.rjvm.MsgAbbrevInputStream.readObject(MsgAbbrevInputStream.java:598) at weblogic.utils.io.ChunkedObjectInputStream.readObject(ChunkedObjectInputStream.java:193) at weblogic.rmi.internal.ObjectIO.readObject(ObjectIO.java:62) at weblogic.rjvm.ResponseImpl.unmarshalReturn(ResponseImpl.java:240) at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:348) at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:259) at weblogic.jndi.internal.ServerNamingNode_1033_WLStub.lookup(Unknown Source) at weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:405) at weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:393) at javax.naming.InitialContext.lookup(InitialContext.java:392) at org.hibernate.connection.DatasourceConnectionProvider.configure(DatasourceConnectionProvider.java:75) at org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProviderFactory.java:143) at org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProviderFactory.java:84) at org.hibernate.cfg.SettingsFactory.createConnectionProvider(SettingsFactory.java:459) at org.hibernate.cfg.SettingsFactory.buildSettings(SettingsFactory.java:91) at org.hibernate.cfg.Configuration.buildSettingsInternal(Configuration.java:2833) at org.hibernate.cfg.Configuration.buildSettings(Configuration.java:2829) at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1840) at com.pslife.vertrag.jppfbridge.VertragBearbeitenTask.doRun(VertragBearbeitenTask.java:88) at com.pslife.vertrag.jppfbridge.VertragBearbeitenTask.run(VertragBearbeitenTask.java:56) at org.jppf.server.node.NodeTaskWrapper.run(NodeTaskWrapper.java:136) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441) at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303) at java.util.concurrent.FutureTask.run(FutureTask.java:138) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441) at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303) at java.util.concurrent.FutureTask.run(FutureTask.java:138) at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908) at java.lang.Thread.run(Thread.java:662)Caused by: java.lang.reflect.InvocationTargetException at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27) at java.lang.reflect.Constructor.newInstance(Constructor.java:513) at weblogic.rmi.internal.StubGenerator.generateStub(StubGenerator.java:795) ... 43 moreCaused by: java.lang.ArrayIndexOutOfBoundsException: 8 at weblogic.jdbc.common.internal.RmiDataSource_1036_WLStub.ensureInitialized(Unknown Source) at weblogic.jdbc.common.internal.RmiDataSource_1036_WLStub.<init>(Unknown Source) ... 48 more
@Dataclass VertragBearbeitenTask extends JPPFTask { ... /** called by run() */def doRun() { var config = new Configuration config.setProperty("hibernate.connection.driver_class", "oracle.jdbc.driver.OracleDriver") config.setProperty("hibernate.connection.datasource", "pslifeds") config.setProperty("hibernate.dialect", "org.hibernate.dialect.Oracle10gDialect") config.setProperty("hibernate.transaction.factory_class", "org.hibernate.transaction.JDBCTransactionFactory") config.setProperty("hibernate.transaction.manager_lookup_class", "org.hibernate.transaction.WeblogicTransactionManagerLookup") config.setProperty("hibernate.current_session_context_class", "thread") config.setProperty("hibernate.cache.provider_class", "org.hibernate.cache.NoCacheProvider") config.setProperty("hibernate.hbm2ddl.auto", "none") config.setProperty("hibernate.show_sql", "false") config.setProperty("jta.UserTransaction", "javax.transaction.UserTransaction") config.setProperty('hibernate.jndi.java.naming.factory.initial', 'weblogic.jndi.WLInitialContextFactory') config.setProperty('hibernate.jndi.java.naming.provider.url', 't3://localhost:7001') config.setProperty('hibernate.jndi.java.naming.security.principal', 'someUser') config.setProperty('hibernate.jndi.java.naming.security.credentials', 'somePassword') config.configure LOG.info('Configuration configured') val sessionFactory = config.buildSessionFactory LOG.info('Got session factory') val currentSession = sessionFactory::currentSession LOG.info('Got session') // ... open transaction, call business logic, commit transaction ... } def static void main(String[] args) { // ... create bearbeitungsauftrag val task = new VertragBearbeitenTask("UUID", '4421', bearbeitungsauftrag) task.run }}
import java.util.Properties;import javax.naming.InitialContext;import javax.sql.DataSource;public class RemoteLookup { public static void main(final String[] args) throws Exception { Properties properties = new Properties(); properties.put("java.naming.factory.initial", "weblogic.jndi.WLInitialContextFactory"); properties.put("java.naming.provider.url", "t3://localhost:7001"); // works with IP address too properties.put("java.naming.security.principal", "someUser"); properties.put("java.naming.security.credentials", "somePassword"); InitialContext context = new InitialContext(properties); DataSource lookup = (DataSource) context.lookup("pslifeds"); // doesn't fail System.out.println(lookup); // doesn't fail }}
java.lang.ClassFormatError: Incompatible magic value 1347093252 in class file weblogic/jdbc/rmi/internal/ConnectionImpl_weblogic_jdbc_wrapper_JTAConnection_weblogic_jdbc_wrapper_XAConnection_oracle_jdbc_driver_LogicalConnection_RemoteInterface at java.lang.ClassLoader.defineClass1(Native Method) at java.lang.ClassLoader.defineClassCond(ClassLoader.java:631) at java.lang.ClassLoader.defineClass(ClassLoader.java:615) at java.lang.ClassLoader.defineClass(ClassLoader.java:465) at org.jppf.classloader.AbstractJPPFClassLoader.findClass(AbstractJPPFClassLoader.java:157) at org.jppf.classloader.AbstractJPPFClassLoader.findClass(AbstractJPPFClassLoader.java:106) at java.lang.ClassLoader.loadClass(ClassLoader.java:306) at org.jppf.classloader.AbstractJPPFClassLoader.loadClass(AbstractJPPFClassLoader.java:338) at java.lang.ClassLoader.loadClass(ClassLoader.java:295) at java.lang.ClassLoader.loadClass(ClassLoader.java:247) at weblogic.utils.classloaders.GenericClassLoader.loadClass(GenericClassLoader.java:179) at java.lang.Class.forName0(Native Method) at java.lang.Class.forName(Class.java:247) at weblogic.rmi.utils.WLRMIClassLoaderDelegate.loadClass(WLRMIClassLoaderDelegate.java:204) at weblogic.rmi.utils.WLRMIClassLoaderDelegate.loadClass(WLRMIClassLoaderDelegate.java:135) at weblogic.rmi.utils.Utilities.loadClass(Utilities.java:305) at weblogic.rmi.internal.ClientRuntimeDescriptor.computeInterfaces(ClientRuntimeDescriptor.java:232) at weblogic.rmi.internal.ClientRuntimeDescriptor.getInterfaces(ClientRuntimeDescriptor.java:147) at weblogic.rmi.internal.StubInfo.getInterfaces(StubInfo.java:80) at weblogic.rmi.internal.StubGenerator.<init>(StubGenerator.java:85) at weblogic.rmi.internal.StubGenerator.hotCodeGenClass(StubGenerator.java:782) at weblogic.rmi.internal.StubGenerator.getStubClass(StubGenerator.java:766) at weblogic.rmi.internal.StubGenerator.generateStub(StubGenerator.java:793) at weblogic.rmi.internal.StubGenerator.generateStub(StubGenerator.java:786) at weblogic.rmi.extensions.StubFactory.getStub(StubFactory.java:74) at weblogic.rmi.internal.StubInfo.resolveObject(StubInfo.java:254) at weblogic.rmi.internal.StubInfo.readResolve(StubInfo.java:199) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at java.io.ObjectStreamClass.invokeReadResolve(ObjectStreamClass.java:1061) at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1761) at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1328) at java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:1946) at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1870) at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1752) at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1328) at java.io.ObjectInputStream.readObject(ObjectInputStream.java:350) at weblogic.utils.io.ChunkedObjectInputStream.readObject(ChunkedObjectInputStream.java:208) at weblogic.rjvm.MsgAbbrevInputStream.readObject(MsgAbbrevInputStream.java:599) at weblogic.utils.io.ChunkedObjectInputStream.readObject(ChunkedObjectInputStream.java:204) at weblogic.rmi.internal.ObjectIO.readObject(ObjectIO.java:62) at weblogic.rjvm.ResponseImpl.unmarshalReturn(ResponseImpl.java:243) at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:348) at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:259) at weblogic.jdbc.common.internal.RmiDataSource_1036_WLStub.getConnection(Unknown Source) at org.hibernate.connection.DatasourceConnectionProvider.getConnection(DatasourceConnectionProvider.java:92) at org.hibernate.cfg.SettingsFactory.buildSettings(SettingsFactory.java:114) at org.hibernate.cfg.Configuration.buildSettingsInternal(Configuration.java:2833) at org.hibernate.cfg.Configuration.buildSettings(Configuration.java:2829) at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1840) at com.pslife.vertrag.common.datenzugriff.hibernate.PSLifeHibernateSessionFactory.init(PSLifeHibernateSessionFactory.java:112) at com.pslife.vertrag.common.datenzugriff.hibernate.PSLifeHibernateSessionFactory.getSessionFactory(PSLifeHibernateSessionFactory.java:70) at com.pslife.vertrag.jppfbridge.VertragBearbeitenTask.doRun(VertragBearbeitenTask.java:87) at com.pslife.vertrag.jppfbridge.VertragBearbeitenTask.run(VertragBearbeitenTask.java:56) at org.jppf.server.node.NodeTaskWrapper.run(NodeTaskWrapper.java:136) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441) at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303) at java.util.concurrent.FutureTask.run(FutureTask.java:138) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441) at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303) at java.util.concurrent.FutureTask.run(FutureTask.java:138) at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908) at java.lang.Thread.run(Thread.java:662)
2013-05-29 15:28:09,775 [DEBUG][org.jppf.classloader.AbstractJPPFClassLoader.findClassInURLClasspath(409)]: looking up up resource [weblogic.jdbc.rmi.internal.ConnectionImpl_weblogic_jdbc_wrapper_JTAConnection_weblogic_jdbc_wrapper_XAConnection_oracle_jdbc_driver_LogicalConnection_RemoteInterface] in the URL classpath for JPPFClassLoader[id=2, type=server, uuidPath=[], classpath=]2013-05-29 15:28:09,775 [DEBUG][org.jppf.classloader.AbstractJPPFClassLoader.findClassInURLClasspath(422)]: resource [weblogic.jdbc.rmi.internal.ConnectionImpl_weblogic_jdbc_wrapper_JTAConnection_weblogic_jdbc_wrapper_XAConnection_oracle_jdbc_driver_LogicalConnection_RemoteInterface] not found in the URL classpath for JPPFClassLoader[id=2, type=server, uuidPath=[], classpath=]2013-05-29 15:28:09,775 [DEBUG][org.jppf.classloader.AbstractJPPFClassLoader.findClass(138)]: looking up definition for resource [weblogic.jdbc.rmi.internal.ConnectionImpl_weblogic_jdbc_wrapper_JTAConnection_weblogic_jdbc_wrapper_XAConnection_oracle_jdbc_driver_LogicalConnection_RemoteInterface]2013-05-29 15:28:09,775 [DEBUG][org.jppf.classloader.AbstractJPPFClassLoaderLifeCycle.loadResource(136)]: loading remote definition for resource [weblogic/jdbc/rmi/internal/ConnectionImpl_weblogic_jdbc_wrapper_JTAConnection_weblogic_jdbc_wrapper_XAConnection_oracle_jdbc_driver_LogicalConnection_RemoteInterface.class]2013-05-29 15:28:09,776 [DEBUG][org.jppf.classloader.ClassLoaderRequestHandler.run(145)]: sending batch of 1 class loading requests: CompositeResourceWrapper[resources=[JPPFResourceWrapper[dynamic=false, name=weblogic/jdbc/rmi/internal/ConnectionImpl_weblogic_jdbc_wrapper_JTAConnection_weblogic_jdbc_wrapper_XAConnection_oracle_jdbc_driver_LogicalConnection_RemoteInterface.class, state=NODE_REQUEST]]]2013-05-29 15:28:09,778 [DEBUG][org.jppf.classloader.ClassLoaderRequestHandler.run(151)]: got response CompositeResourceWrapper[resources=[JPPFResourceWrapper[dynamic=false, name=weblogic/jdbc/rmi/internal/ConnectionImpl_weblogic_jdbc_wrapper_JTAConnection_weblogic_jdbc_wrapper_XAConnection_oracle_jdbc_driver_LogicalConnection_RemoteInterface.class, state=NODE_RESPONSE]]]2013-05-29 15:28:09,778 [DEBUG][org.jppf.classloader.AbstractJPPFClassLoaderLifeCycle.loadResource(138)]: remote definition for resource [weblogic/jdbc/rmi/internal/ConnectionImpl_weblogic_jdbc_wrapper_JTAConnection_weblogic_jdbc_wrapper_XAConnection_oracle_jdbc_driver_LogicalConnection_RemoteInterface.class] not found2013-05-29 15:28:09,778 [DEBUG][org.jppf.classloader.AbstractJPPFClassLoader.findClass(149)]: definition for resource [weblogic.jdbc.rmi.internal.ConnectionImpl_weblogic_jdbc_wrapper_JTAConnection_weblogic_jdbc_wrapper_XAConnection_oracle_jdbc_driver_LogicalConnection_RemoteInterface] not found2013-05-29 15:28:09,778 [DEBUG][org.jppf.classloader.AbstractJPPFClassLoader.findClassInURLClasspath(409)]: looking up up resource [weblogic.jdbc.rmi.internal.ConnectionImpl_weblogic_jdbc_wrapper_JTAConnection_weblogic_jdbc_wrapper_XAConnection_oracle_jdbc_driver_LogicalConnection_RemoteInterface] in the URL classpath for JPPFClassLoader[id=3, type=client, uuidPath=[461623B2-80C4-6654-FCBD-EBD4DC53E4E8, A9129945-63DF-E94E-9A61-3B8B4F9AA092], classpath=]2013-05-29 15:28:09,778 [DEBUG][org.jppf.classloader.AbstractJPPFClassLoader.findClassInURLClasspath(422)]: resource [weblogic.jdbc.rmi.internal.ConnectionImpl_weblogic_jdbc_wrapper_JTAConnection_weblogic_jdbc_wrapper_XAConnection_oracle_jdbc_driver_LogicalConnection_RemoteInterface] not found in the URL classpath for JPPFClassLoader[id=3, type=client, uuidPath=[461623B2-80C4-6654-FCBD-EBD4DC53E4E8, A9129945-63DF-E94E-9A61-3B8B4F9AA092], classpath=]2013-05-29 15:28:09,779 [DEBUG][org.jppf.classloader.AbstractJPPFClassLoader.findClass(138)]: looking up definition for resource [weblogic.jdbc.rmi.internal.ConnectionImpl_weblogic_jdbc_wrapper_JTAConnection_weblogic_jdbc_wrapper_XAConnection_oracle_jdbc_driver_LogicalConnection_RemoteInterface]2013-05-29 15:28:09,779 [DEBUG][org.jppf.classloader.AbstractJPPFClassLoaderLifeCycle.loadResource(136)]: loading remote definition for resource [weblogic/jdbc/rmi/internal/ConnectionImpl_weblogic_jdbc_wrapper_JTAConnection_weblogic_jdbc_wrapper_XAConnection_oracle_jdbc_driver_LogicalConnection_RemoteInterface.class]2013-05-29 15:28:09,779 [DEBUG][org.jppf.classloader.ClassLoaderRequestHandler.run(145)]: sending batch of 1 class loading requests: CompositeResourceWrapper[resources=[JPPFResourceWrapper[dynamic=true, name=weblogic/jdbc/rmi/internal/ConnectionImpl_weblogic_jdbc_wrapper_JTAConnection_weblogic_jdbc_wrapper_XAConnection_oracle_jdbc_driver_LogicalConnection_RemoteInterface.class, state=NODE_REQUEST]]]2013-05-29 15:28:09,791 [DEBUG][org.jppf.classloader.ClassLoaderRequestHandler.run(151)]: got response CompositeResourceWrapper[resources=[JPPFResourceWrapper[dynamic=true, name=weblogic/jdbc/rmi/internal/ConnectionImpl_weblogic_jdbc_wrapper_JTAConnection_weblogic_jdbc_wrapper_XAConnection_oracle_jdbc_driver_LogicalConnection_RemoteInterface.class, state=NODE_RESPONSE]]]2013-05-29 15:28:09,791 [DEBUG][org.jppf.classloader.AbstractJPPFClassLoaderLifeCycle.loadResource(138)]: remote definition for resource [weblogic/jdbc/rmi/internal/ConnectionImpl_weblogic_jdbc_wrapper_JTAConnection_weblogic_jdbc_wrapper_XAConnection_oracle_jdbc_driver_LogicalConnection_RemoteInterface.class] found2013-05-29 15:28:09,792 [DEBUG][org.jppf.classloader.AbstractJPPFClassLoader.findClass(154)]: found definition for resource [weblogic.jdbc.rmi.internal.ConnectionImpl_weblogic_jdbc_wrapper_JTAConnection_weblogic_jdbc_wrapper_XAConnection_oracle_jdbc_driver_LogicalConnection_RemoteInterface, definitionLength=135405]
2013-05-29 15:28:09,777 [DEBUG][org.jppf.server.nio.classloader.node.WaitingNodeRequestState.performTransition(75)]: read resource request CompositeResourceWrapper[resources=[JPPFResourceWrapper[dynamic=false, name=weblogic/jdbc/rmi/internal/ConnectionImpl_weblogic_jdbc_wrapper_JTAConnection_weblogic_jdbc_wrapper_XAConnection_oracle_jdbc_driver_LogicalConnection_RemoteInterface.class, state=NODE_REQUEST]]] from node: SelectionKeyWrapper[id=6, 127.0.0.1:49976, readyOps=1, keyOps=0, context=channel=SelectionKeyWrapper[id=6], state=WAITING_NODE_REQUEST, resource=null, pendingResponses=0, type=node, peer=false, uuid=B3135D03-66F9-1829-EE47-F4ECE2322C25]2013-05-29 15:28:09,777 [DEBUG][org.jppf.server.nio.classloader.node.WaitingNodeRequestState.processNonDynamic(139)]: resource not found [weblogic/jdbc/rmi/internal/ConnectionImpl_weblogic_jdbc_wrapper_JTAConnection_weblogic_jdbc_wrapper_XAConnection_oracle_jdbc_driver_LogicalConnection_RemoteInterface.class] in cache for node: SelectionKeyWrapper[id=6, 127.0.0.1:49976, readyOps=1, keyOps=0, context=channel=SelectionKeyWrapper[id=6], state=WAITING_NODE_REQUEST, resource=null, pendingResponses=0, type=node, peer=false, uuid=B3135D03-66F9-1829-EE47-F4ECE2322C25]2013-05-29 15:28:09,777 [DEBUG][org.jppf.classloader.ResourceProvider.getResource(126)]: resource [weblogic/jdbc/rmi/internal/ConnectionImpl_weblogic_jdbc_wrapper_JTAConnection_weblogic_jdbc_wrapper_XAConnection_oracle_jdbc_driver_LogicalConnection_RemoteInterface.class] not found2013-05-29 15:28:09,777 [DEBUG][org.jppf.server.nio.classloader.node.WaitingNodeRequestState.processNonDynamic(143)]: resource not found [weblogic/jdbc/rmi/internal/ConnectionImpl_weblogic_jdbc_wrapper_JTAConnection_weblogic_jdbc_wrapper_XAConnection_oracle_jdbc_driver_LogicalConnection_RemoteInterface.class] in the driver's classpath for node: SelectionKeyWrapper[id=6, 127.0.0.1:49976, readyOps=1, keyOps=0, context=channel=SelectionKeyWrapper[id=6], state=WAITING_NODE_REQUEST, resource=null, pendingResponses=0, type=node, peer=false, uuid=B3135D03-66F9-1829-EE47-F4ECE2322C25]2013-05-29 15:28:09,777 [DEBUG][org.jppf.server.nio.classloader.node.WaitingNodeRequestState.performTransition(80)]: sending response CompositeResourceWrapper[resources=[JPPFResourceWrapper[dynamic=false, name=weblogic/jdbc/rmi/internal/ConnectionImpl_weblogic_jdbc_wrapper_JTAConnection_weblogic_jdbc_wrapper_XAConnection_oracle_jdbc_driver_LogicalConnection_RemoteInterface.class, state=NODE_RESPONSE]]] to node: SelectionKeyWrapper[id=6, 127.0.0.1:49976, readyOps=1, keyOps=0, context=channel=SelectionKeyWrapper[id=6], state=WAITING_NODE_REQUEST, resource=null, pendingResponses=0, type=node, peer=false, uuid=B3135D03-66F9-1829-EE47-F4ECE2322C25]2013-05-29 15:28:09,777 [DEBUG][org.jppf.server.nio.StateTransitionManager.transitionChannel(135)]: transition from WAITING_NODE_REQUEST to SENDING_NODE_RESPONSE with ops=5 for channel SelectionKeyWrapper[id=6, 127.0.0.1:49976, readyOps=1, keyOps=0, context=channel=SelectionKeyWrapper[id=6], state=WAITING_NODE_REQUEST, resource=null, pendingResponses=0, type=node, peer=false, uuid=B3135D03-66F9-1829-EE47-F4ECE2322C25]2013-05-29 15:28:09,777 [DEBUG][org.jppf.server.nio.PlainNioObject.write(120)]: wrote 4 bytes to output destination, count/size = 4/4 (dl = org.jppf.io.MultipleBuffersLocation@20985fa2)2013-05-29 15:28:09,777 [DEBUG][org.jppf.server.nio.PlainNioObject.write(120)]: wrote 1029 bytes to output destination, count/size = 1029/1029 (dl = org.jppf.io.MultipleBuffersLocation@73ae9565)2013-05-29 15:28:09,778 [DEBUG][org.jppf.server.nio.classloader.node.SendingNodeResponseState.performTransition(71)]: node: SelectionKeyWrapper[id=6, 127.0.0.1:49976, readyOps=4, keyOps=0, context=channel=SelectionKeyWrapper[id=6], state=SENDING_NODE_RESPONSE, resource=null, pendingResponses=0, type=node, peer=false, uuid=B3135D03-66F9-1829-EE47-F4ECE2322C25], response [CompositeResourceWrapper[resources=[JPPFResourceWrapper[dynamic=false, name=weblogic/jdbc/rmi/internal/ConnectionImpl_weblogic_jdbc_wrapper_JTAConnection_weblogic_jdbc_wrapper_XAConnection_oracle_jdbc_driver_LogicalConnection_RemoteInterface.class, state=NODE_RESPONSE]]]] sent to the node2013-05-29 15:28:09,778 [DEBUG][org.jppf.server.nio.StateTransitionManager.transitionChannel(135)]: transition from SENDING_NODE_RESPONSE to WAITING_NODE_REQUEST with ops=1 for channel SelectionKeyWrapper[id=6, 127.0.0.1:49976, readyOps=4, keyOps=0, context=channel=SelectionKeyWrapper[id=6], state=SENDING_NODE_RESPONSE, resource=null, pendingResponses=0, type=node, peer=false, uuid=B3135D03-66F9-1829-EE47-F4ECE2322C25]2013-05-29 15:28:09,779 [DEBUG][org.jppf.server.nio.PlainNioObject.read(96)]: read 4 bytes from input source, count/size = 4/42013-05-29 15:28:09,779 [DEBUG][org.jppf.server.nio.PlainNioObject.read(99)]: count = 4, size = 42013-05-29 15:28:09,780 [DEBUG][org.jppf.server.nio.PlainNioObject.read(96)]: read 1163 bytes from input source, count/size = 1163/11632013-05-29 15:28:09,780 [DEBUG][org.jppf.server.nio.PlainNioObject.read(99)]: count = 1163, size = 11632013-05-29 15:28:09,780 [DEBUG][org.jppf.server.nio.classloader.node.WaitingNodeRequestState.performTransition(75)]: read resource request CompositeResourceWrapper[resources=[JPPFResourceWrapper[dynamic=true, name=weblogic/jdbc/rmi/internal/ConnectionImpl_weblogic_jdbc_wrapper_JTAConnection_weblogic_jdbc_wrapper_XAConnection_oracle_jdbc_driver_LogicalConnection_RemoteInterface.class, state=NODE_REQUEST]]] from node: SelectionKeyWrapper[id=6, 127.0.0.1:49976, readyOps=1, keyOps=0, context=channel=SelectionKeyWrapper[id=6], state=WAITING_NODE_REQUEST, resource=null, pendingResponses=0, type=node, peer=false, uuid=B3135D03-66F9-1829-EE47-F4ECE2322C25]2013-05-29 15:28:09,780 [DEBUG][org.jppf.server.nio.classloader.node.WaitingNodeRequestState.processDynamic(181)]: requesting resource JPPFResourceWrapper[dynamic=true, name=weblogic/jdbc/rmi/internal/ConnectionImpl_weblogic_jdbc_wrapper_JTAConnection_weblogic_jdbc_wrapper_XAConnection_oracle_jdbc_driver_LogicalConnection_RemoteInterface.class, state=NODE_REQUEST] from client: SelectionKeyWrapper[id=3, DE-ADN-45V96S1.adesso.local:49961, readyOps=1, keyOps=0, context=channel=SelectionKeyWrapper[id=3], state=IDLE_PROVIDER, resource=null, pendingRequests=0, currentRequest=null, connectionUuid=461623B2-80C4-6654-FCBD-EBD4DC53E4E8_1, type=client, peer=false, uuid=461623B2-80C4-6654-FCBD-EBD4DC53E4E8] for node: SelectionKeyWrapper[id=6, 127.0.0.1:49976, readyOps=1, keyOps=0, context=channel=SelectionKeyWrapper[id=6], state=WAITING_NODE_REQUEST, resource=null, pendingResponses=0, type=node, peer=false, uuid=B3135D03-66F9-1829-EE47-F4ECE2322C25]2013-05-29 15:28:09,780 [DEBUG][org.jppf.server.nio.classloader.ClassContext.processRequests(199)]: state changing from IDLE_PROVIDER to SENDING_PROVIDER_REQUEST for channel=SelectionKeyWrapper[id=3], state=IDLE_PROVIDER, resource=null, pendingRequests=1, currentRequest=null, connectionUuid=461623B2-80C4-6654-FCBD-EBD4DC53E4E8_1, type=client, peer=false, uuid=461623B2-80C4-6654-FCBD-EBD4DC53E4E82013-05-29 15:28:09,780 [DEBUG][org.jppf.server.nio.StateTransitionManager.transitionChannel(135)]: transition from IDLE_PROVIDER to SENDING_PROVIDER_REQUEST with ops=5 for channel SelectionKeyWrapper[id=3, DE-ADN-45V96S1.adesso.local:49961, readyOps=1, keyOps=0, context=channel=SelectionKeyWrapper[id=3], state=IDLE_PROVIDER, resource=null, pendingRequests=1, currentRequest=null, connectionUuid=461623B2-80C4-6654-FCBD-EBD4DC53E4E8_1, type=client, peer=false, uuid=461623B2-80C4-6654-FCBD-EBD4DC53E4E8]2013-05-29 15:28:09,780 [DEBUG][org.jppf.server.nio.classloader.node.WaitingNodeRequestState.performTransition(84)]: pending responses 1 for node: SelectionKeyWrapper[id=6, 127.0.0.1:49976, readyOps=1, keyOps=0, context=channel=SelectionKeyWrapper[id=6], state=WAITING_NODE_REQUEST, resource=null, pendingResponses=1, type=node, peer=false, uuid=B3135D03-66F9-1829-EE47-F4ECE2322C25]2013-05-29 15:28:09,780 [DEBUG][org.jppf.server.nio.StateTransitionManager.transitionChannel(135)]: transition from WAITING_NODE_REQUEST to IDLE_NODE with ops=0 for channel SelectionKeyWrapper[id=6, 127.0.0.1:49976, readyOps=1, keyOps=0, context=channel=SelectionKeyWrapper[id=6], state=WAITING_NODE_REQUEST, resource=null, pendingResponses=1, type=node, peer=false, uuid=B3135D03-66F9-1829-EE47-F4ECE2322C25]2013-05-29 15:28:09,780 [DEBUG][org.jppf.server.nio.classloader.client.SendingProviderRequestState.performTransition(77)]: provider SelectionKeyWrapper[id=3, DE-ADN-45V96S1.adesso.local:49961, readyOps=4, keyOps=0, context=channel=SelectionKeyWrapper[id=3], state=SENDING_PROVIDER_REQUEST, resource=weblogic/jdbc/rmi/internal/ConnectionImpl_weblogic_jdbc_wrapper_JTAConnection_weblogic_jdbc_wrapper_XAConnection_oracle_jdbc_driver_LogicalConnection_RemoteInterface.class, pendingRequests=0, currentRequest=null, connectionUuid=461623B2-80C4-6654-FCBD-EBD4DC53E4E8_1, type=client, peer=false, uuid=461623B2-80C4-6654-FCBD-EBD4DC53E4E8] serving new request [weblogic/jdbc/rmi/internal/ConnectionImpl_weblogic_jdbc_wrapper_JTAConnection_weblogic_jdbc_wrapper_XAConnection_oracle_jdbc_driver_LogicalConnection_RemoteInterface.class] from node: SelectionKeyWrapper[id=6, 127.0.0.1:49976, readyOps=1, keyOps=0, context=channel=SelectionKeyWrapper[id=6], state=WAITING_NODE_REQUEST, resource=null, pendingResponses=1, type=node, peer=false, uuid=B3135D03-66F9-1829-EE47-F4ECE2322C25]2013-05-29 15:28:09,781 [DEBUG][org.jppf.server.nio.PlainNioObject.write(120)]: wrote 4 bytes to output destination, count/size = 4/4 (dl = org.jppf.io.MultipleBuffersLocation@3067ed13)2013-05-29 15:28:09,781 [DEBUG][org.jppf.server.nio.PlainNioObject.write(120)]: wrote 982 bytes to output destination, count/size = 982/982 (dl = org.jppf.io.MultipleBuffersLocation@76fd9338)2013-05-29 15:28:09,781 [DEBUG][org.jppf.server.nio.classloader.client.SendingProviderRequestState.performTransition(84)]: request sent to provider SelectionKeyWrapper[id=3, DE-ADN-45V96S1.adesso.local:49961, readyOps=4, keyOps=0, context=channel=SelectionKeyWrapper[id=3], state=SENDING_PROVIDER_REQUEST, resource=weblogic/jdbc/rmi/internal/ConnectionImpl_weblogic_jdbc_wrapper_JTAConnection_weblogic_jdbc_wrapper_XAConnection_oracle_jdbc_driver_LogicalConnection_RemoteInterface.class, pendingRequests=0, currentRequest=ResourceRequest[channel=SelectionKeyWrapper[id=6], resource=JPPFResourceWrapper[dynamic=true, name=weblogic/jdbc/rmi/internal/ConnectionImpl_weblogic_jdbc_wrapper_JTAConnection_weblogic_jdbc_wrapper_XAConnection_oracle_jdbc_driver_LogicalConnection_RemoteInterface.class, state=PROVIDER_REQUEST]], connectionUuid=461623B2-80C4-6654-FCBD-EBD4DC53E4E8_1, type=client, peer=false, uuid=461623B2-80C4-6654-FCBD-EBD4DC53E4E8] from node ResourceRequest[channel=SelectionKeyWrapper[id=6], resource=JPPFResourceWrapper[dynamic=true, name=weblogic/jdbc/rmi/internal/ConnectionImpl_weblogic_jdbc_wrapper_JTAConnection_weblogic_jdbc_wrapper_XAConnection_oracle_jdbc_driver_LogicalConnection_RemoteInterface.class, state=PROVIDER_REQUEST]], resource: weblogic/jdbc/rmi/internal/ConnectionImpl_weblogic_jdbc_wrapper_JTAConnection_weblogic_jdbc_wrapper_XAConnection_oracle_jdbc_driver_LogicalConnection_RemoteInterface.class2013-05-29 15:28:09,781 [DEBUG][org.jppf.server.nio.StateTransitionManager.transitionChannel(135)]: transition from SENDING_PROVIDER_REQUEST to WAITING_PROVIDER_RESPONSE with ops=1 for channel SelectionKeyWrapper[id=3, DE-ADN-45V96S1.adesso.local:49961, readyOps=4, keyOps=0, context=channel=SelectionKeyWrapper[id=3], state=SENDING_PROVIDER_REQUEST, resource=weblogic/jdbc/rmi/internal/ConnectionImpl_weblogic_jdbc_wrapper_JTAConnection_weblogic_jdbc_wrapper_XAConnection_oracle_jdbc_driver_LogicalConnection_RemoteInterface.class, pendingRequests=0, currentRequest=ResourceRequest[channel=SelectionKeyWrapper[id=6], resource=JPPFResourceWrapper[dynamic=true, name=weblogic/jdbc/rmi/internal/ConnectionImpl_weblogic_jdbc_wrapper_JTAConnection_weblogic_jdbc_wrapper_XAConnection_oracle_jdbc_driver_LogicalConnection_RemoteInterface.class, state=PROVIDER_REQUEST]], connectionUuid=461623B2-80C4-6654-FCBD-EBD4DC53E4E8_1, type=client, peer=false, uuid=461623B2-80C4-6654-FCBD-EBD4DC53E4E8]2013-05-29 15:28:09,782 [DEBUG][org.jppf.server.nio.PlainNioObject.read(96)]: read 4 bytes from input source, count/size = 4/42013-05-29 15:28:09,782 [DEBUG][org.jppf.server.nio.PlainNioObject.read(99)]: count = 4, size = 42013-05-29 15:28:09,783 [DEBUG][org.jppf.server.nio.PlainNioObject.read(96)]: read 136424 bytes from input source, count/size = 136424/1364242013-05-29 15:28:09,783 [DEBUG][org.jppf.server.nio.PlainNioObject.read(99)]: count = 136424, size = 1364242013-05-29 15:28:09,783 [DEBUG][org.jppf.server.nio.classloader.client.WaitingProviderResponseState.performTransition(77)]: read response from provider: SelectionKeyWrapper[id=3, DE-ADN-45V96S1.adesso.local:49961, readyOps=1, keyOps=0, context=channel=SelectionKeyWrapper[id=3], state=WAITING_PROVIDER_RESPONSE, resource=weblogic/jdbc/rmi/internal/ConnectionImpl_weblogic_jdbc_wrapper_JTAConnection_weblogic_jdbc_wrapper_XAConnection_oracle_jdbc_driver_LogicalConnection_RemoteInterface.class, pendingRequests=0, currentRequest=ResourceRequest[channel=SelectionKeyWrapper[id=6], resource=JPPFResourceWrapper[dynamic=true, name=weblogic/jdbc/rmi/internal/ConnectionImpl_weblogic_jdbc_wrapper_JTAConnection_weblogic_jdbc_wrapper_XAConnection_oracle_jdbc_driver_LogicalConnection_RemoteInterface.class, state=PROVIDER_REQUEST]], connectionUuid=461623B2-80C4-6654-FCBD-EBD4DC53E4E8_1, type=client, peer=false, uuid=461623B2-80C4-6654-FCBD-EBD4DC53E4E8], sending to node SelectionKeyWrapper[id=6, 127.0.0.1:49976, readyOps=1, keyOps=0, context=channel=SelectionKeyWrapper[id=6], state=IDLE_NODE, resource=null, pendingResponses=1, type=node, peer=false, uuid=B3135D03-66F9-1829-EE47-F4ECE2322C25], resource: weblogic/jdbc/rmi/internal/ConnectionImpl_weblogic_jdbc_wrapper_JTAConnection_weblogic_jdbc_wrapper_XAConnection_oracle_jdbc_driver_LogicalConnection_RemoteInterface.class2013-05-29 15:28:09,783 [DEBUG][org.jppf.server.nio.classloader.client.WaitingProviderResponseState.performTransition(87)]: client SelectionKeyWrapper[id=3, DE-ADN-45V96S1.adesso.local:49961, readyOps=1, keyOps=0, context=channel=SelectionKeyWrapper[id=3], state=WAITING_PROVIDER_RESPONSE, resource=weblogic/jdbc/rmi/internal/ConnectionImpl_weblogic_jdbc_wrapper_JTAConnection_weblogic_jdbc_wrapper_XAConnection_oracle_jdbc_driver_LogicalConnection_RemoteInterface.class, pendingRequests=0, currentRequest=ResourceRequest[channel=SelectionKeyWrapper[id=6], resource=JPPFResourceWrapper[dynamic=true, name=weblogic/jdbc/rmi/internal/ConnectionImpl_weblogic_jdbc_wrapper_JTAConnection_weblogic_jdbc_wrapper_XAConnection_oracle_jdbc_driver_LogicalConnection_RemoteInterface.class, state=PROVIDER_REQUEST]], connectionUuid=461623B2-80C4-6654-FCBD-EBD4DC53E4E8_1, type=client, peer=false, uuid=461623B2-80C4-6654-FCBD-EBD4DC53E4E8] sending response JPPFResourceWrapper[dynamic=true, name=weblogic/jdbc/rmi/internal/ConnectionImpl_weblogic_jdbc_wrapper_JTAConnection_weblogic_jdbc_wrapper_XAConnection_oracle_jdbc_driver_LogicalConnection_RemoteInterface.class, state=NODE_RESPONSE] to node SelectionKeyWrapper[id=6, 127.0.0.1:49976, readyOps=1, keyOps=0, context=channel=SelectionKeyWrapper[id=6], state=IDLE_NODE, resource=null, pendingResponses=1, type=node, peer=false, uuid=B3135D03-66F9-1829-EE47-F4ECE2322C25]2013-05-29 15:28:09,783 [DEBUG][org.jppf.server.nio.StateTransitionManager.transitionChannel(135)]: transition from IDLE_NODE to NODE_WAITING_PROVIDER_RESPONSE with ops=5 for channel SelectionKeyWrapper[id=6, 127.0.0.1:49976, readyOps=1, keyOps=0, context=channel=SelectionKeyWrapper[id=6], state=IDLE_NODE, resource=null, pendingResponses=1, type=node, peer=false, uuid=B3135D03-66F9-1829-EE47-F4ECE2322C25]2013-05-29 15:28:09,783 [DEBUG][org.jppf.server.nio.classloader.node.NodeWaitingProviderResponseState.performTransition(79)]: node[id=6] got response for resource JPPFResourceWrapper[dynamic=true, name=weblogic/jdbc/rmi/internal/ConnectionImpl_weblogic_jdbc_wrapper_JTAConnection_weblogic_jdbc_wrapper_XAConnection_oracle_jdbc_driver_LogicalConnection_RemoteInterface.class, state=NODE_RESPONSE]2013-05-29 15:28:09,783 [WARN ][org.jppf.server.nio.StateTransitionManager.transitionChannel(134)]: unauthorized transition from WAITING_PROVIDER_RESPONSE to IDLE_PROVIDER with ops=1 for channel SelectionKeyWrapper[id=3, DE-ADN-45V96S1.adesso.local:49961, readyOps=1, keyOps=0, context=channel=SelectionKeyWrapper[id=3], state=WAITING_PROVIDER_RESPONSE, resource=null, pendingRequests=0, currentRequest=null, connectionUuid=461623B2-80C4-6654-FCBD-EBD4DC53E4E8_1, type=client, peer=false, uuid=461623B2-80C4-6654-FCBD-EBD4DC53E4E8]2013-05-29 15:28:09,784 [DEBUG][org.jppf.server.nio.classloader.node.NodeWaitingProviderResponseState.sendResponse(98)]: preparing to send the response for channel SelectionKeyWrapper[id=6, 127.0.0.1:49976, readyOps=1, keyOps=0, context=channel=SelectionKeyWrapper[id=6], state=NODE_WAITING_PROVIDER_RESPONSE, resource=null, pendingResponses=0, type=node, peer=false, uuid=B3135D03-66F9-1829-EE47-F4ECE2322C25]2013-05-29 15:28:09,784 [DEBUG][org.jppf.server.nio.StateTransitionManager.transitionChannel(135)]: transition from NODE_WAITING_PROVIDER_RESPONSE to SENDING_NODE_RESPONSE with ops=5 for channel SelectionKeyWrapper[id=6, 127.0.0.1:49976, readyOps=1, keyOps=0, context=channel=SelectionKeyWrapper[id=6], state=NODE_WAITING_PROVIDER_RESPONSE, resource=null, pendingResponses=0, type=node, peer=false, uuid=B3135D03-66F9-1829-EE47-F4ECE2322C25]2013-05-29 15:28:09,784 [DEBUG][org.jppf.server.nio.PlainNioObject.write(120)]: wrote 4 bytes to output destination, count/size = 4/4 (dl = org.jppf.io.MultipleBuffersLocation@4b33650d)2013-05-29 15:28:09,784 [DEBUG][org.jppf.server.nio.PlainNioObject.write(120)]: wrote 3603 bytes to output destination, count/size = 3603/136605 (dl = org.jppf.io.MultipleBuffersLocation@1b2f5f0d)2013-05-29 15:28:09,784 [DEBUG][org.jppf.server.nio.PlainNioObject.write(120)]: wrote 4096 bytes to output destination, count/size = 7699/136605 (dl = org.jppf.io.MultipleBuffersLocation@1b2f5f0d)2013-05-29 15:28:09,785 [DEBUG][org.jppf.server.nio.PlainNioObject.write(120)]: wrote 4096 bytes to output destination, count/size = 11795/136605 (dl = org.jppf.io.MultipleBuffersLocation@1b2f5f0d)2013-05-29 15:28:09,785 [DEBUG][org.jppf.server.nio.PlainNioObject.write(120)]: wrote 4096 bytes to output destination, count/size = 15891/136605 (dl = org.jppf.io.MultipleBuffersLocation@1b2f5f0d)2013-05-29 15:28:09,785 [DEBUG][org.jppf.server.nio.PlainNioObject.write(120)]: wrote 4096 bytes to output destination, count/size = 19987/136605 (dl = org.jppf.io.MultipleBuffersLocation@1b2f5f0d)2013-05-29 15:28:09,785 [DEBUG][org.jppf.server.nio.PlainNioObject.write(120)]: wrote 4096 bytes to output destination, count/size = 24083/136605 (dl = org.jppf.io.MultipleBuffersLocation@1b2f5f0d)2013-05-29 15:28:09,786 [DEBUG][org.jppf.server.nio.PlainNioObject.write(120)]: wrote 4096 bytes to output destination, count/size = 28179/136605 (dl = org.jppf.io.MultipleBuffersLocation@1b2f5f0d)2013-05-29 15:28:09,786 [DEBUG][org.jppf.server.nio.PlainNioObject.write(120)]: wrote 4096 bytes to output destination, count/size = 32275/136605 (dl = org.jppf.io.MultipleBuffersLocation@1b2f5f0d)2013-05-29 15:28:09,786 [DEBUG][org.jppf.server.nio.PlainNioObject.write(120)]: wrote 4096 bytes to output destination, count/size = 36371/136605 (dl = org.jppf.io.MultipleBuffersLocation@1b2f5f0d)2013-05-29 15:28:09,786 [DEBUG][org.jppf.server.nio.PlainNioObject.write(120)]: wrote 4096 bytes to output destination, count/size = 40467/136605 (dl = org.jppf.io.MultipleBuffersLocation@1b2f5f0d)2013-05-29 15:28:09,786 [DEBUG][org.jppf.server.nio.PlainNioObject.write(120)]: wrote 4096 bytes to output destination, count/size = 44563/136605 (dl = org.jppf.io.MultipleBuffersLocation@1b2f5f0d)2013-05-29 15:28:09,787 [DEBUG][org.jppf.server.nio.PlainNioObject.write(120)]: wrote 4096 bytes to output destination, count/size = 48659/136605 (dl = org.jppf.io.MultipleBuffersLocation@1b2f5f0d)2013-05-29 15:28:09,787 [DEBUG][org.jppf.server.nio.PlainNioObject.write(120)]: wrote 4096 bytes to output destination, count/size = 52755/136605 (dl = org.jppf.io.MultipleBuffersLocation@1b2f5f0d)2013-05-29 15:28:09,787 [DEBUG][org.jppf.server.nio.PlainNioObject.write(120)]: wrote 4096 bytes to output destination, count/size = 56851/136605 (dl = org.jppf.io.MultipleBuffersLocation@1b2f5f0d)2013-05-29 15:28:09,787 [DEBUG][org.jppf.server.nio.PlainNioObject.write(120)]: wrote 4096 bytes to output destination, count/size = 60947/136605 (dl = org.jppf.io.MultipleBuffersLocation@1b2f5f0d)2013-05-29 15:28:09,788 [DEBUG][org.jppf.server.nio.PlainNioObject.write(120)]: wrote 4096 bytes to output destination, count/size = 65043/136605 (dl = org.jppf.io.MultipleBuffersLocation@1b2f5f0d)2013-05-29 15:28:09,788 [DEBUG][org.jppf.server.nio.PlainNioObject.write(120)]: wrote 4096 bytes to output destination, count/size = 69139/136605 (dl = org.jppf.io.MultipleBuffersLocation@1b2f5f0d)2013-05-29 15:28:09,788 [DEBUG][org.jppf.server.nio.PlainNioObject.write(120)]: wrote 4096 bytes to output destination, count/size = 73235/136605 (dl = org.jppf.io.MultipleBuffersLocation@1b2f5f0d)2013-05-29 15:28:09,788 [DEBUG][org.jppf.server.nio.PlainNioObject.write(120)]: wrote 4096 bytes to output destination, count/size = 77331/136605 (dl = org.jppf.io.MultipleBuffersLocation@1b2f5f0d)2013-05-29 15:28:09,788 [DEBUG][org.jppf.server.nio.PlainNioObject.write(120)]: wrote 4096 bytes to output destination, count/size = 81427/136605 (dl = org.jppf.io.MultipleBuffersLocation@1b2f5f0d)2013-05-29 15:28:09,789 [DEBUG][org.jppf.server.nio.PlainNioObject.write(120)]: wrote 4096 bytes to output destination, count/size = 85523/136605 (dl = org.jppf.io.MultipleBuffersLocation@1b2f5f0d)2013-05-29 15:28:09,789 [DEBUG][org.jppf.server.nio.PlainNioObject.write(120)]: wrote 4096 bytes to output destination, count/size = 89619/136605 (dl = org.jppf.io.MultipleBuffersLocation@1b2f5f0d)2013-05-29 15:28:09,789 [DEBUG][org.jppf.server.nio.PlainNioObject.write(120)]: wrote 4096 bytes to output destination, count/size = 93715/136605 (dl = org.jppf.io.MultipleBuffersLocation@1b2f5f0d)2013-05-29 15:28:09,789 [DEBUG][org.jppf.server.nio.PlainNioObject.write(120)]: wrote 4096 bytes to output destination, count/size = 97811/136605 (dl = org.jppf.io.MultipleBuffersLocation@1b2f5f0d)2013-05-29 15:28:09,789 [DEBUG][org.jppf.server.nio.PlainNioObject.write(120)]: wrote 4096 bytes to output destination, count/size = 101907/136605 (dl = org.jppf.io.MultipleBuffersLocation@1b2f5f0d)2013-05-29 15:28:09,789 [DEBUG][org.jppf.server.nio.PlainNioObject.write(120)]: wrote 4096 bytes to output destination, count/size = 106003/136605 (dl = org.jppf.io.MultipleBuffersLocation@1b2f5f0d)2013-05-29 15:28:09,790 [DEBUG][org.jppf.server.nio.PlainNioObject.write(120)]: wrote 4096 bytes to output destination, count/size = 110099/136605 (dl = org.jppf.io.MultipleBuffersLocation@1b2f5f0d)2013-05-29 15:28:09,790 [DEBUG][org.jppf.server.nio.PlainNioObject.write(120)]: wrote 4096 bytes to output destination, count/size = 114195/136605 (dl = org.jppf.io.MultipleBuffersLocation@1b2f5f0d)2013-05-29 15:28:09,790 [DEBUG][org.jppf.server.nio.PlainNioObject.write(120)]: wrote 4096 bytes to output destination, count/size = 118291/136605 (dl = org.jppf.io.MultipleBuffersLocation@1b2f5f0d)2013-05-29 15:28:09,790 [DEBUG][org.jppf.server.nio.PlainNioObject.write(120)]: wrote 4096 bytes to output destination, count/size = 122387/136605 (dl = org.jppf.io.MultipleBuffersLocation@1b2f5f0d)2013-05-29 15:28:09,790 [DEBUG][org.jppf.server.nio.PlainNioObject.write(120)]: wrote 4096 bytes to output destination, count/size = 126483/136605 (dl = org.jppf.io.MultipleBuffersLocation@1b2f5f0d)2013-05-29 15:28:09,790 [DEBUG][org.jppf.server.nio.PlainNioObject.write(120)]: wrote 4096 bytes to output destination, count/size = 130579/136605 (dl = org.jppf.io.MultipleBuffersLocation@1b2f5f0d)2013-05-29 15:28:09,790 [DEBUG][org.jppf.server.nio.PlainNioObject.write(120)]: wrote 4096 bytes to output destination, count/size = 134675/136605 (dl = org.jppf.io.MultipleBuffersLocation@1b2f5f0d)2013-05-29 15:28:09,791 [DEBUG][org.jppf.server.nio.PlainNioObject.write(120)]: wrote 1930 bytes to output destination, count/size = 136605/136605 (dl = org.jppf.io.MultipleBuffersLocation@1b2f5f0d)2013-05-29 15:28:09,791 [DEBUG][org.jppf.server.nio.classloader.node.SendingNodeResponseState.performTransition(71)]: node: SelectionKeyWrapper[id=6, 127.0.0.1:49976, readyOps=4, keyOps=0, context=channel=SelectionKeyWrapper[id=6], state=SENDING_NODE_RESPONSE, resource=null, pendingResponses=0, type=node, peer=false, uuid=B3135D03-66F9-1829-EE47-F4ECE2322C25], response [CompositeResourceWrapper[resources=[JPPFResourceWrapper[dynamic=true, name=weblogic/jdbc/rmi/internal/ConnectionImpl_weblogic_jdbc_wrapper_JTAConnection_weblogic_jdbc_wrapper_XAConnection_oracle_jdbc_driver_LogicalConnection_RemoteInterface.class, state=NODE_RESPONSE]]]] sent to the node
How did you setup the database and for what database did you do that?
<?xml version='1.0' encoding='UTF-8'?><jdbc-data-source xmlns="http://xmlns.oracle.com/weblogic/jdbc-data-source" ...> <name>JPPF test DS</name> <jdbc-driver-params> <url>jdbc:mysql://localhost:3306/testjppf</url> <driver-name>com.mysql.jdbc.Driver</driver-name> <properties> <property> <name>user</name> <value>testjppf</value> </property> </properties> <password-encrypted>...</password-encrypted> </jdbc-driver-params> <jdbc-connection-pool-params> <test-table-name>SQL SELECT 1</test-table-name> </jdbc-connection-pool-params> <jdbc-data-source-params> <jndi-name>jdbc/jppfDS</jndi-name> <global-transactions-protocol>OnePhaseCommit</global-transactions-protocol> </jdbc-data-source-params></jdbc-data-source>
node process id: 3188Attempting connection to the class server at 192.168.1.14:11111Reconnected to the class serverJPPF Node management initializedAttempting connection to the node server at 192.168.1.14:11111Reconnected to the node serverNode successfully initializedgot datasource ClusterableRemoteRef(-6209956585212552390S:127.0.0.1:[7001,7001,-1,-1,-1,-1,-1]:jppf:AdminServer [-6209956585212552390S:127.0.0.1:[7001,7001,-1,-1,-1,-1,-1]:jppf:AdminServer/287])/287got connection weblogic.jdbc.rmi.SerialConnection_weblogic_jdbc_rmi_internal_ConnectionImpl_weblogic_jdbc_wrapper_PoolConnection_com_mysql_jdbc_JDBC4Connection_1035_WLStub@1customer id=1, name=John Smith, age=45customer id=2, name=Jane Doe, age=35
C:\java\jdk1.6.0_x64\bin\java -client-Xmx1024m -XX:MaxPermSize=256m-Dweblogic.Name=AdminServer-Djava.security.policy=C:\Tools\Oracle\WLSERV~1.3\server\lib\weblogic.policy-Xverify:none-da-Dplatform.home=C:\Tools\Oracle\WLSERV~1.3 -Dwls.home=C:\Tools\Oracle\WLSERV~1.3\server -Dweblogic.home=C:\Tools\Oracle\WLSERV~1.3\server-Dweblogic.management.discover=true-Dwlw.iterativeDev=-Dwlw.testConsole=-Dwlw.logErrorsToConsole=-Dweblogic.ext.dirs=C:\Tools\Oracle\patch_wls1035\profiles\default\sysext_manifest_classpath-Xdebug -Xnoagent -Xrunjdwp:transport=dt_socket,address=8787,server=y,suspend=n -Duser.language=en -Duser.country=US-Dlog4j.configuration=log4j.properties weblogic.Server
C:\java\JDK16~1.0_X\bin\java -client -Xms256m -Xmx512m -XX:CompileThreshold=8000 -XX:PermSize=48m -XX:MaxPermSize=256m-Dweblogic.Name=myserver-Djava.security.policy=C:\Tools\WLS103~1\wlserver\server\lib\weblogic.policy-Xverify:none-da-Dplatform.home=C:\Tools\WLS103~1\wlserver -Dwls.home=C:\Tools\WLS103~1\wlserver\server -Dweblogic.home=C:\Tools\WLS103~1\wlserver\server-Dweblogic.management.discover=true-Dwlw.iterativeDev=-Dwlw.testConsole=-Dwlw.logErrorsToConsole=weblogic.Server