Max number of threads in Java?

Hi,
I am running into a bug now that I am testing my working code. Basically, my program creates a bunch of objects that talk to each other. Each object is a thread, and at a given time (there is a one object that keeps track of time) a thread may choose to message another thread. My problem is that when I create more objects, my code doesn't run to completion. For example, when I have 10 objects talking to each other, things work fine. But if I have 15, they all run for a little bit, then the program seems to just hang and not do anything.
Is there a limit as to how many threads I can have? If I was out of memory or something, I'd get an exception, right? But I don't get anything - it just seems like things "freeze up".

15 threads? shouldn't be a problem.
I think th emax threads allows runs in thousands..if not ten of thousands.Java process threads itself use about 600 or more threads. howevr, it could also be the underlying system restr8iction on the number of threads allow per process????
for you case: it's highly likely you run into the max # of threads.
I can only think of two reasons for your application to freeze:
1. Deadlock
if you have an object that is synchronized..than you might have run into a deadlock (race-condition)
for example:
Object A has the key for Object X , and waiting for Object Z
Object B has the key for Object Z, and waiting for Object X
as you can see..they will never gives up the lock....so you're in a dead lock.
2. Low memory resource. (Memory - Paging and Thrashing)
Each of your thread is using up the resouces (memory) and processing power.
When you reach the max or near max and needs to create more memory..the garbage collector kick in
and try to reclaim some unused memory. This can slow down your application dramatically if the garbage
collector is invoke often.
Also..paging is performed when you reach max memory..the operating system keep on paging your memory (usually happens when there's a lot of threads and not enough memory. If this happen..than it
can cause your program to becomes freeze like....remeber..each thread is given a small amount of time to
perform a task..if the time it takes to load a page for a thread is almost equals to context switch time..than
no work is really done..and your program "freeze"
solution..redesign you app to prevent thrashing.
it is likely paging is the culprit..but i would not dismiss deadlock issues.

Similar Messages

  • "max number of thread"

    We are running a java web app on a Ubuntu Oracle WebLogic server version 10.3.3.
    The java web app performs long polls with open tcp socket to keep the client connection open. The clients are long polling the WebLogic at 30 seconds.
    Currently we are not able to maintain stability for greater than 24 hours with approximately 200 simultaneous sessions on WebLogic server. Session to me is active client/server tcp connection. We have re-written our application to use continuations, but we are seeing ConcurrentModificationException errors in performance testing.
    Is there any setting in WebLogic for “max number of thread” that can handle?
    Edited by: user9316392 on Jul 8, 2010 11:07 AM

    First, WebLogic since 9.0 has a self-tuning thread pool where WLS will automatically grow and shrink the number of threads based on some internal algorithms. I'm not aware of a hard limit so theoretically there is no max thread count as long as the JVM has memory and WLS thinks more threads will help. You can read up on it here:
    http://www.oracle.com/technology/pub/articles/dev2arch/2006/01/workload-management.html
    Practically, I wouldn't expect more than several hundred threads to be helpful.
    As for your situation, how does WLS become unstable? Out of memory, out of file descriptors, errors on new requests, etc. I think you're going to have to use some JVM tools to see what happens to your JVM over time. Is there a memory leak somewhere, is it non-heap memory, etc. JRockit Mission Control is helpful if running on JRockit. If you're on Sun Hotspot, them presumably you can use some of the Hotspot tools. You'll want to compare the state of the JVM towards the beginning of your load test, but after a slight warm-up period with a snapshot after the load test has been running for a long period of time.

  • Max number of Thread allowed

    I am writing a multi threading program.
    is there any limit on max number of thread allowed?
    if yes, how to check the limit?

    For the language: no. It depends on your memory (every Thread has its own stack, etc.).
    Kind regards,
      Levi

  • Max number of threads in a jvm

    Is there any constraint for the maximum number of threads that we can
    create in a particular JVM

    Why do you have to worry about that? I don't see a reason to create lots and lots of threads. The OS will usually spend most of the time doing context switches if you create more than a couple of thousand threads.
    Kaj

  • Max Number of threads per Process in Solaris 8

    I'm running into qpplication which crashes with a segfault when the LWP for that process hits about 255, i'm trying to find the maximum number of threads per process using sysconf and its returning -1
    #include <unistd.h>
    int
    main(void)
    printf("%ld\n",sysconf(_SC_THREAD_THREADS_MAX));
    return 0;
    I'm using gcc 3.3.2
    If anyone can tell me the maximum number of threads per process I would really appreicate it.
    Also the maximum number of open files per process.
    Thanks in advance
    - Rodrick Brown
    - DoITT

    Please make sure that you build a
    multithreaded program first (check with ldd).
    If anyone can tell me the maximum number of threads per process I would
    really appreicate it.
    Also the maximum number of open files per process. It depends on the architecture (x86/SPARC), OS version,
    64 or 32-bit, /etc/system, shell limitations (/usr/bin/ulimit) ...
    Search for "rlim_fd_max / rlim_fd_cur" on docs.sun.com too.
    HTH,
    -vladimir

  • How to find out the number of threads created under java vm at runtime

    our application seems to have hit the max number of threads that can be created under vm and the vm will just hang after that. that behavior seems to be consistent from an article that I read earlier.
    I wonder any way that java app can find out the number of threads currently created under vm?
    thanks in advance!

    If you are not starting an extra thread group you can use the Thread.activeCount method. But this willnot return all the threads, as there are some jvm threads, i.e. garbage collector. Also if you are running on a Unix type operating system then you can send a signal to the jvm to give you a thread dump, i think the signal is sighup.
    If the application is hanging i would of thought that you have a deadlock situation rather then the JVM not being able to create new threads, roughly how many threads should be running ??

  • Max no of threads

    Is there such a thing as a max number of threads in a midp j2me application. My application, which makes extensive use of threads is suffering from hanging, where is shouldn't. How do I remedy this?
    Thanks.
    Pier.

    I am porting a agent programming api to the pda platform. Each agent has it's own communications, class loading and other threads. These threads have to be alive so that they are ready to execute any time this particular agent receives messages from another agent.
    So my problem does not have anything to do with the number of threads?
    Does it have anything to do with how j2me handles threads? My program runs with no problems at all on the wireless toolkit emulator. BUt on the iPAQ, sometimes it hangs near the beginning where several threads are being initiated. If it gets past that stage, there are no problems though.
    Any guesses to help me? :)
    Pier.

  • Tuning the good number of thread with Work Manager?

    Hi,
    I search some best practice or experience return on the max thread number on a weblogic managed server
    I try to explain: with WLS 8.1 and execute queue it was hard to tune the good number of thread but possible (with some processor and for an application we find that after 30 concurrent thread, there's lower performance because of switch on processeur, for others it was 45 for example)
    Now i can see sometimes more than 500 thread on one JVM and it seem to be very much for me!!
    we face some problem of response time in PRODUCTION, i can see sometimes more than 100 Stuck thread on a resource, so i think it's the reason of bad response time. But with Work Manager, it increase the number of thread to accept others request and the CPU stay at acceptable level (less than 50%) because the stuckthread are do nothing (waiting for resource)
    So i don't understand the good tuning to apply since WorkManager...ok it isn't normal to have a lot of stuck thread but if there's no matter about the max number of thread, is it useful to stop and restart managed server?
    do you think we can have have bad performance if there's a lot of thread?
    thank you for your experience return. If you have no idea just tell me how much thread you can see on your managed server in Production.

    up, up...
    we have always the same probleme in production: 50 stuck thread on each JVM since 15 days....
    the manages serveurs are in warning but don't seem to be disturb cause the work manager add more threads dynamicaly.
    Anyone have idea if this situation is a probleme for response time on other request ?
    reboot managed solve this situation but i would like to understand the consequence of this situation.
    thanks a lot for your experience.

  • Maximum thread in java

    I have created a program to check max no of thread in java
    public class Test extends Thread {
    static int count;
    public static void main (String [] args){
    for(;;){
    count++;
    System.out.println(count);
    new Test().start();
    @Override
    public void run() {
    try {
    Thread.sleep(100000000);
    } catch (InterruptedException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
    First iteration -Xmx1024m ,max thread = 2011 > Second iteration -Xmx512m ,max thread = 3350 > third iteration -Xmx2m ,max thread = 5112
    I have also tried with setting -Xss1m ,max thread = 1011, then I have set -Xss256k max thread 4900+
    Can anyone suggest me
    1)what is relation of stack and heap size in java?
    2)On what factor does max no of thread depends in java?

    1)what is relation of stack and heap size in java?Essentially nil.
    2)On what factor does max no of thread depends in java?It depends on the operating system, the thread stack size, the amount of virtual memory available, ...

  • Hi, Could not start CC&B application "Remote JVM:1 Thread 1" java.lang.UnsatisfiedLinkError"

    E:\CCBDEV\Java\JDK15~1.0_2
    JAVA Memory arguments: -Xms1024m -Xmx1024m -XX:PermSize=300m
    WLS Start Mode=Development
    CLASSPATH=E:\WEBLOG~1\WLSERV~1.0\samples\server\examples\build\serverclasses;E:\WEBLOG~1\patch_wss110\profiles\default\sys_manifest_classpath\weblogic_patch.jar;E:\WEBLOG~1\patch_wlw1021\profiles\defa
    ult\sys_manifest_classpath\weblogic_patch.jar;E:\WEBLOG~1\patch_wls1002\profiles\default\sys_manifest_classpath\weblogic_patch.jar;E:\WEBLOG~1\patch_cie640\profiles\default\sys_manifest_classpath\webl
    ogic_patch.jar;E:\CCBDEV\Java\JDK15~1.0_2\lib\tools.jar;E:\WEBLOG~1\WLSERV~1.0\server\lib\weblogic_sp.jar;E:\WEBLOG~1\WLSERV~1.0\server\lib\weblogic.jar;E:\WEBLOG~1\modules\features\weblogic.server.mo
    dules_10.0.2.0.jar;E:\WEBLOG~1\modules\features\com.bea.cie.common-plugin.launch_2.1.2.0.jar;E:\WEBLOG~1\WLSERV~1.0\server\lib\webservices.jar;E:\WEBLOG~1\modules\ORGAPA~1.5/lib/ant-all.jar;E:\WEBLOG~
    1\modules\NETSFA~1.0/lib/ant-contrib.jar;;E:\WEBLOG~1\WLSERV~1.0\common\eval\pointbase\lib\pbembedded51.jar;E:\WEBLOG~1\WLSERV~1.0\common\eval\pointbase\lib\pbupgrade51.jar;E:\WEBLOG~1\WLSERV~1.0\comm
    on\eval\pointbase\lib\pbclient51.jar;E:\WEBLOG~1\WLSERV~1.0\server\lib\xqrl.jar;;;E:\CCBDEV\spl\CCBV221\splapp\standalone\lib\xalan-2.7.0.jar;E:\CCBDEV\spl\CCBV221\splapp\standalone\lib\serializer-2.7
    .0.jar;E:\CCBDEV\spl\CCBV221\splapp\standalone\lib\antlr-2.7.6.jar
    PATH=E:\WEBLOG~1\patch_wss110\profiles\default\native;E:\WEBLOG~1\patch_wlw1021\profiles\default\native;E:\WEBLOG~1\patch_wls1002\profiles\default\native;E:\WEBLOG~1\patch_cie640\profiles\default\nati
    ve;E:\WEBLOG~1\WLSERV~1.0\server\native\win\x64;E:\WEBLOG~1\WLSERV~1.0\server\bin;E:\WEBLOG~1\modules\ORGAPA~1.5\bin;E:\CCBDEV\Java\JDK15~1.0_2\jre\bin;E:\CCBDEV\Java\JDK15~1.0_2\bin;E:\MICROF~1\Bin\b
    in\Win64;E:\CCBDEV\Java\jdk1.5.0_21\bin;E:\CCBDEV\spl\CCBV221\runtime;E:\CCBDEV\spl\CCBV221\bin;E:\CCBDEV\spl\CCBV221\product\apache-ant-1.7.0\bin;E:\Perl\bin;E:\Perl\bin;C:\Windows\system32;C:\Window
    s;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\CA\SharedComponentsCAUpdate\;RCU_JDBC_TRIM_BLOCKS=TRUE;E:\app\product\11.2.0\dbhome_1\bin;E:\spl\Hibernate4;E:\c
    3p0;E:\spl\Weblogic\wlserver_10.3;E:\spl\Weblogic\wlserver_10.3;%COBDIR_INPUT%;E:\MicroFocus\Bin;E:\app\product\11.2.0\dbhome_1;E:\spl\Weblogic\jdk160_29;E:\spl\Weblogic\jdk160_29;E:\Java5\jdk1.5.0_21
    \bin;;E:\WEBLOG~1\WLSERV~1.0\server\native\win\x64\oci920_8
    *  To start WebLogic Server, use a username and   *
    *  password assigned to an admin-level user.  For *
    *  server administration, use the WebLogic Server *
    *  console at http:\\hostname:port\console        *
    starting weblogic with Java version:
    java version "1.5.0_21"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_21-b01)
    Java HotSpot(TM) 64-Bit Server VM (build 1.5.0_21-b01, mixed mode)
    "Starting Weblogic with the following arguments"
    E:\CCBDEV\Java\JDK15~1.0_2\bin\java -hotspot   -Xms1024m -Xmx1024m -XX:PermSize=300m   -da -Dplatform.home=E:\WEBLOG~1\WLSERV~1.0 -Dwls.home=E:\WEBLOG~1\WLSERV~1.0\myserver -Dwli.home=E:\WEBLOG~1\WLSE
    RV~1.0\integration  -Dweblogic.management.discover=true  -Dwlw.iterativeDev= -Dwlw.testConsole= -Dwlw.logErrorsToConsole= -Dweblogic.ext.dirs=E:\WEBLOG~1\patch_wss110\profiles\default\sysext_manifest_
    classpath;E:\WEBLOG~1\patch_wlw1021\profiles\default\sysext_manifest_classpath;E:\WEBLOG~1\patch_wls1002\profiles\default\sysext_manifest_classpath;E:\WEBLOG~1\patch_cie640\profiles\default\sysext_man
    ifest_classpath -Dweblogic.management.username=system -Dweblogic.management.password=spladmin -Dweblogic.Name=myserver -Djava.security.policy=E:\WEBLOG~1\WLSERV~1.0\server\lib\weblogic.policy  weblogi
    c.Server
    <Oct 20, 2014 5:22:26 PM IST> <Notice> <WebLogicServer> <BEA-000395> <Following extensions directory contents added to the end of the classpath:
    E:\Weblogic10MP\wlserver_10.0\platform\lib\p13n\p13n-schemas.jar;E:\Weblogic10MP\wlserver_10.0\platform\lib\p13n\p13n_common.jar;E:\Weblogic10MP\wlserver_10.0\platform\lib\p13n\p13n_system.jar;E:\Webl
    ogic10MP\wlserver_10.0\platform\lib\p13n\wlp_services.jar;E:\Weblogic10MP\wlserver_10.0\platform\lib\wlp\netuix_common.jar;E:\Weblogic10MP\wlserver_10.0\platform\lib\wlp\netuix_schemas.jar;E:\Weblogic
    10MP\wlserver_10.0\platform\lib\wlp\netuix_system.jar;E:\Weblogic10MP\wlserver_10.0\platform\lib\wlp\wsrp-client.jar;E:\Weblogic10MP\wlserver_10.0\platform\lib\wlp\wsrp-common.jar>
    <Oct 20, 2014 5:22:26 PM IST> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Java HotSpot(TM) 64-Bit Server VM Version 1.5.0_21-b01 from Sun Microsystems Inc.>
    <Oct 20, 2014 5:22:27 PM IST> <Info> <Management> <BEA-141107> <Version: WebLogic Server 10.0 MP2  Sat Apr 25 01:45:38 EDT 2009 1213942 >
    <Oct 20, 2014 5:22:29 PM IST> <Info> <WebLogicServer> <BEA-000215> <Loaded License : E:\Weblogic10MP\license.bea>
    <Oct 20, 2014 5:22:29 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <Oct 20, 2014 5:22:29 PM IST> <Info> <WorkManager> <BEA-002900> <Initializing self-tuning thread pool>
    <Oct 20, 2014 5:22:29 PM IST> <Notice> <Log Management> <BEA-170019> <The server log file E:\CCBDEV\spl\CCBV221\logs\system\myserver.log is opened. All server side log events will be written to this f
    ile.>
    <Oct 20, 2014 5:22:32 PM IST> <Notice> <Security> <BEA-090082> <Security initializing using security realm myrealm.>
    <Oct 20, 2014 5:22:36 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STANDBY>
    <Oct 20, 2014 5:22:36 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <Oct 20, 2014 5:22:40 PM IST> <Warning> <HTTP> <BEA-101304> <Webapp: weblogic.servlet.internal.WebAppServletContext@4bd66d2f - appName: 'SPLWeb', name: '/spl', context-path: '/spl', the role: cisusers
    defined in web.xml has not been mapped to principals in security-role-assignment in weblogic.xml. Will use the rolename itself as the principal-name.>
    <Oct 20, 2014 5:22:40 PM IST> <Warning> <HTTP> <BEA-101304> <Webapp: weblogic.servlet.internal.WebAppServletContext@3c954549 - appName: 'SPLWeb', name: '/spl/XAIApp', context-path: '/spl/XAIApp', the
    role: cisusers defined in web.xml has not been mapped to principals in security-role-assignment in weblogic.xml. Will use the rolename itself as the principal-name.>
    Failed to load servlet Class: org.openspml.v2.transport.RPCRouterServletIgnoring: unable to load class:java.lang.ClassNotFoundException: org.openspml.v2.transport.RPCRouterServlet at: weblogic.xml.sch
    ema.binding.util.ClassUtil.loadClass(ClassUtil.java:76)Failed to load servlet Class: org.openspml.v2.transport.RPCRouterServletIgnoring: unable to load class:java.lang.ClassNotFoundException: org.open
    spml.v2.transport.RPCRouterServlet at: weblogic.xml.schema.binding.util.ClassUtil.loadClass(ClassUtil.java:76)INFO: Loaded log4j.properties from external file E:\CCBDEV\spl\CCBV221\etc\conf\root\WEB-I
    NF\classes\log4j.properties
    INFO: Loaded spl.properties from external file E:\CCBDEV\spl\CCBV221\etc\conf\root\WEB-INF\classes\spl.properties: {spl.ejbContainer.url=t3://SGPVORACLEUS001:9949, spl.runtime.options.isDevelopmentMod
    e=false, spl.ejbContainer.password=ENC(wghfAp68e9hBOpPz/NxYFIdBIalEx3F2ADn5bf4lsxA=), spl.runtime.service.extraInstallationServices=CILTINCP, spl.tools.loaded.applications=base,ccb,cm, spl.runtime.soc
    ket.file.dir=E:/CCBDEV/spl/CCBV221/runtime, spl.runtime.cobol.sql.fetchSize=150, spl.runtime.cobol.cobrcall=false, spl.serviceBean.jndi.name=spl/servicebean, spl.ejbContainer.contextFactory=weblogic.j
    ndi.WLInitialContextFactory, spl.runtime.cobol.encoding=UTF8, spl.runtime.cobol.sql.disableQueryCache=false, spl.ejbContainer.user=system, spl.runtime.utf8Database=true, spl.runtime.fusionlook=true, s
    pl.runtime.environ.init.dir=E:/CCBDEV/spl/CCBV221/etc, spl.runtime.cobol.sql.cache.maxTotalEntries=1000, spl.runtime.oracle.statementCacheSize=300, spl.runtime.cobol.sql.cursoredCache.maxRows=10, spl.
    runtime.cobol.remote.jvm=false, spl.runtime.sql.highValue=?}
    -  2014-10-20 17:22:42,209 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (shared.context.ApplicationMode) Application set to production mode
    -  2014-10-20 17:22:42,224 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (web.startup.SPLWebStartup) Initializing SPL web application
    -  2014-10-20 17:22:42,224 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (web.dynamicui.TransformServletHelper) Disable UIPage Compression set to false
    -  2014-10-20 17:22:42,256 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ContextFactory) Creating lightweight context.  This context cannot a
    ccess Java business objects.
    -  2014-10-20 17:22:42,271 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ApplicationContext) Building hibernate configuration
    -  2014-10-20 17:22:42,381 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ApplicationContext) Loaded hibernate.properties from external file E
    :\CCBDEV\spl\CCBV221\etc\conf\root\WEB-INF\classes\hibernate.properties
    -  2014-10-20 17:22:42,427 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ApplicationContext) Adding 0 hibernate mappings
    -  2014-10-20 17:22:42,646 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ApplicationContext) Done building hibernate configuration, time 376.
    062 ms
    -  2014-10-20 17:22:42,646 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ApplicationContext) Building hibernate session factory
    -  2014-10-20 17:22:42,662 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (hibernate.connection.ConnectionProviderFactory) Initializing connection provider: or
    g.hibernate.connection.C3P0ConnectionProvider
    -  2014-10-20 17:22:42,677 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (hibernate.connection.C3P0ConnectionProvider) C3P0 using driver: oracle.jdbc.driver.O
    racleDriver at URL: jdbc:oracle:thin:@SGPVORACLEUS001:1521:CCBDEMO
    -  2014-10-20 17:22:42,677 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (hibernate.connection.C3P0ConnectionProvider) Connection properties: {user=cisadm, pa
    ssword=****}
    -  2014-10-20 17:22:42,677 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (hibernate.connection.C3P0ConnectionProvider) autocommit mode: false
    -  2014-10-20 17:22:42,771 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (v2.log.MLog) MLog clients using log4j logging.
    -  2014-10-20 17:22:42,959 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (v2.c3p0.C3P0Registry) Initializing c3p0-0.9.1.2 [built 21-May-2007 15:04:56; debug?
    true; trace: 10]
    -  2014-10-20 17:22:43,068 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (c3p0.impl.AbstractPoolBackedDataSource) Initializing c3p0 pool... com.mchange.v2.c3p
    0.PoolBackedDataSource@e25e28cd [ connectionPoolDataSource -> com.mchange.v2.c3p0.WrapperConnectionPoolDataSource@ec1b4ca3 [ acquireIncrement -> 1, acquireRetryAttempts -> 30, acquireRetryDelay -> 100
    0, autoCommitOnClose -> false, automaticTestTable -> null, breakAfterAcquireFailure -> false, checkoutTimeout -> 0, connectionCustomizerClassName -> null, connectionTesterClassName -> com.mchange.v2.c
    3p0.impl.DefaultConnectionTester, debugUnreturnedConnectionStackTraces -> false, factoryClassLocation -> null, forceIgnoreUnresolvedTransactions -> false, identityToken -> 1bqzx6i95clicv4kgia6i|31a9dc
    55, idleConnectionTestPeriod -> 0, initialPoolSize -> 1, maxAdministrativeTaskTime -> 0, maxConnectionAge -> 0, maxIdleTime -> 300, maxIdleTimeExcessConnections -> 0, maxPoolSize -> 150, maxStatements
    -> 0, maxStatementsPerConnection -> 0, minPoolSize -> 1, nestedDataSource -> com.mchange.v2.c3p0.DriverManagerDataSource@2587ec43 [ description -> null, driverClass -> null, factoryClassLocation -> n
    ull, identityToken -> 1bqzx6i95clicv4kgia6i|369e58be, jdbcUrl -> jdbc:oracle:thin:@SGPVORACLEUS001:1521:CCBDEMO, properties -> {user=******, password=******} ], preferredTestQuery -> null, propertyCyc
    le -> 0, testConnectionOnCheckin -> false, testConnectionOnCheckout -> false, unreturnedConnectionTimeout -> 0, usesTraditionalReflectiveProxies -> false; userOverrides: {} ], dataSourceName -> null,
    factoryClassLocation -> null, identityToken -> 1bqzx6i95clicv4kgia6i|36b29562, numHelperThreads -> 3 ]
    -  2014-10-20 17:22:43,537 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (hibernate.dialect.Dialect) Using dialect: org.hibernate.dialect.Oracle10gDialect
    -  2014-10-20 17:22:43,599 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (hibernate.transaction.TransactionFactoryFactory) Transaction strategy: org.hibernate
    .transaction.JDBCTransactionFactory
    -  2014-10-20 17:22:43,599 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (hibernate.transaction.TransactionManagerLookupFactory) No TransactionManagerLookup c
    onfigured (in JTA environment, use of read-write or transactional second-level cache is not recommended)
    -  2014-10-20 17:22:43,693 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (hibernate.impl.SessionFactoryImpl) building session factory
    -  2014-10-20 17:22:43,693 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (hibernate.impl.SessionFactoryObjectFactory) Not binding factory to JNDI, no JNDI nam
    e configured
    -  2014-10-20 17:22:43,693 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ApplicationContext) Done building hibernate session factory, time 1,
    046.387 ms
    -  2014-10-20 17:22:44,131 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.sql.OracleFunctionReplacer) Oracle driver statement cache enabled with size
    of 300
    -  2014-10-20 17:22:44,178 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ApplicationContext) Database: Oracle, version: Oracle Database 11g E
    nterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    -  2014-10-20 17:22:44,178 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ApplicationContext) JDBC driver: Oracle JDBC driver, version: 11.1.0
    .7.0-Production
    -  2014-10-20 17:22:44,209 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.sql.PreparedStatementImpl) SPL Statement result fetch size not specified by
    property spl.runtime.sql.fetchSize, defaulting to 300
    -  2014-10-20 17:22:44,271 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ApplicationContext) System owner is: 'CM'
    -  2014-10-20 17:22:44,271 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ContextFactory) Done creating lightweight context, time 2,019.299 ms
    -  2014-10-20 17:22:44,287 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (shared.context.ApplicationMode) Application set to production mode
    -  2014-10-20 17:22:44,287 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (web.startup.PreloadLoginInfo) Using most prevalent user language 'ENG'
    -  2014-10-20 17:22:44,287 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.CacheManager) Registering cache 'NavigationInfoCache'
    -  2014-10-20 17:22:44,287 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (web.dynamicui.NavigationInfoCache) Calling  XSL Navigation info
    -  2014-10-20 17:22:44,584 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (web.dynamicui.NavigationInfoCache) Total number of navigation keys 3411
    -  2014-10-20 17:22:44,662 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (web.dynamicui.NavigationInfoCache) Total number of preload navigation keys 1034
    -  2014-10-20 17:22:44,662 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (web.dynamicui.NavigationInfoCache) Done calling XSL Navigation info, time 375.422 ms
    -  2014-10-20 17:22:44,678 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.CacheManager) Registering cache 'ForeignKeyReferenceRepository'
    -  2014-10-20 17:22:44,678 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.CacheManager) Registering cache 'FieldMetaDataRepository'
    -  2014-10-20 17:22:45,209 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (web.startup.PreloadLoginInfo) XSLT preload for 1034 main pages
    -  2014-10-20 17:22:45,209 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.CacheManager) Registering cache 'LanguageIndependentXSLPageCache'
    -  2014-10-20 17:22:45,209 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.CacheManager) Registering cache 'InstallationProductRepository'
    -  2014-10-20 17:22:45,224 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.CacheManager) Registering cache 'XSLTemplateCache'
    -  2014-10-20 17:22:46,943 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] WARN  (shared.common.Dom4JHelper) Cannot cache SAXParser instances for improved performance
    (JAXP 1.3 required)
    -  2014-10-20 17:22:57,943 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (web.startup.PreloadLoginInfo)     Processed 50/1034 XSL preload pages, time: 12736 m
    s
    -  2014-10-20 17:23:02,099 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (web.startup.PreloadLoginInfo)     Processed 100/1034 XSL preload pages, time: 16891
    ms
    file:/E:/CCBDEV/spl/CCBV221/splapp/servers/myserver/tmp/_WL_user/SPLWeb/yge362/war/WEB-INF/uiXSL/commonGrid.xsl; Line #26; Column #19;
            Grid servicePointEquipmentGrid should only have one section, with all elements in row=1
    -  2014-10-20 17:23:04,910 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (web.startup.PreloadLoginInfo)     Processed 150/1034 XSL preload pages, time: 19705
    ms
    -  2014-10-20 17:23:06,581 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (web.startup.PreloadLoginInfo)     Processed 200/1034 XSL preload pages, time: 21380
    ms
    -  2014-10-20 17:23:07,721 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (web.startup.PreloadLoginInfo)     Processed 250/1034 XSL preload pages, time: 22512
    ms
    INFO: Loaded spl.properties from classpath: {spl.runtime.service.extraInstallationServices=CILTINCP, spl.runtime.cobol.remote.jvmcommand=E:/CCBDEV/Java/jdk1.5.0_21/bin/java.exe, spl.tools.loaded.appli
    cations=base,ccb,cm, spl.runtime.cobol.remote.jvmcount=2, spl.runtime.socket.file.dir=E:/CCBDEV/spl/CCBV221/runtime, spl.runtime.cobol.sql.fetchSize=50, spl.runtime.cobol.cobrcall=false, spl.runtime.c
    obol.encoding=UTF8, spl.runtime.cobol.sql.disableQueryCache=false, com.splwg.grid.online.enabled=false, spl.runtime.utf8Database=true, spl.runtime.fusionlook=true, spl.runtime.cobol.remote.jvmoptions=
    -Xmx256m -server -Dfile.encoding=ISO8859_1 -cp E:/CCBDEV/spl/CCBV221/splapp/standalone/config;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/activation_api-1.1.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone
    /lib/coherence-3.5.2.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/coherence-work-3.5.2.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/commonj-3.5.2.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/
    commons-beanutils-core-1.7.0.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/commons-cli-1.1.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/commons-codec-1.3.jar;E:/CCBDEV/spl/CCBV221/splapp/standalo
    ne/lib/commons-collections-2.1.1.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/commons-fileupload-1.2.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/commons-httpclient-2.0.2.jar;E:/CCBDEV/spl/CCBV2
    21/splapp/standalone/lib/commons-io-1.3.2.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/commons-lang-2.2.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/commons-logging-1.0.4.jar;E:/CCBDEV/spl/CCBV2
    21/splapp/standalone/lib/concurrent-1.3.4.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/dom4j-1.6.1.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/hibernate-3.2.7.jar;E:/CCBDEV/spl/CCBV221/splapp/s
    tandalone/lib/icu4j-3.6.1.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/jaxen-1.1.1.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/jcip-annotations.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/j
    ta.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/jtds-1.2.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/log4j-1.2.15.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/mail_api-1.4.jar;E:/CCBDEV/spl/
    CCBV221/splapp/standalone/lib/mfcobol.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/ojdbc5-11.1.0.7.0.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/orai18n-collation.jar;E:/CCBDEV/spl/CCBV221/spla
    pp/standalone/lib/orai18n-mapping.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/orai18n-utility.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/orai18n.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/li
    b/serializer-2.7.0.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/spl-base-2.2.0.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/spl-ccb-2.3.1.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/spl-serv
    icebeaninterface-2.2.0.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/spl-serviceclient-2.2.0.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/spl-shared-2.2.0.jar;E:/CCBDEV/spl/CCBV221/splapp/standal
    one/lib/spl-spml-2.2.0.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/spl-web-2.2.0.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/spl-xai-2.2.0.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/stax-
    api-1.0.1.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/stax2.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/staxmate-0.9.1.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/wstx-asl-3.2.1.jar;E:/CCB
    DEV/spl/CCBV221/splapp/standalone/lib/xalan-2.7.0.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/xmlparserv2.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/xquery.jar;E:/CCBDEV/spl/CCBV221/splapp/st
    andalone/lib/xstream-1.2.1.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/yjp-controller-api-redist.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/geronimo-spec-j2ee-1.4-rc4.jar, spl.runtime.environ
    .init.dir=E:/CCBDEV/spl/CCBV221/etc, com.splwg.grid.distThreadPool.threads.DEFAULT=5, spl.runtime.cobol.sql.cache.maxTotalEntries=1000, spl.runtime.oracle.statementCacheSize=300, spl.runtime.cobol.rem
    ote.rmiStartPort=6503, spl.runtime.cobol.sql.cursoredCache.maxRows=10, spl.runtime.cobol.remote.jvm=true, com.splwg.batch.scheduler.daemon=false, spl.runtime.sql.highValue=?}
    INFO: Loaded log4j.properties from external file E:\CCBDEV\spl\CCBV221\etc\conf\service\log4j.properties
    -  2014-10-20 17:23:08,689 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (shared.context.ApplicationMode) Application set to production mode
    -  2014-10-20 17:23:08,689 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (service.impl.ServiceBeanContext) Initializing Service Bean
    -  2014-10-20 17:23:08,705 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ContextFactory) Creating default context
    -  2014-10-20 17:23:09,080 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ContextFactory) Loading lookups for runtime discovery of implemented
    lookups in application
    -  2014-10-20 17:23:09,220 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ContextFactory) Done loading lookups for discovery, time 150.605 ms
    -  2014-10-20 17:23:11,859 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (shared.context.ContextLoader) Discovering lookups for base
    -  2014-10-20 17:23:12,968 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (shared.context.ContextLoader) Done discovering base lookups (generated=210, manual=4
    2), time 1,115.419 ms
    -  2014-10-20 17:23:16,638 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (shared.context.ContextLoader) Discovering lookups for ccb
    -  2014-10-20 17:23:17,856 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (shared.context.ContextLoader) Done discovering ccb lookups (generated=486, manual=12
    6), time 1,213.088 ms
    -  2014-10-20 17:23:17,934 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] WARN  (shared.environ.ContextManagedObjectSet) Could not load resource com/splwg/cm/domain/
    contextManagedObjects.xml on classpath.  This may be harmless but could mean a problem with the classpath.  Please verify that the classpath for application cm is correctly configured.
    -  2014-10-20 17:23:32,700 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ContextFactory) Registering lookups
    -  2014-10-20 17:23:33,794 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ContextFactory) 662 lookups registered, time 1,091.097 ms
    -  2014-10-20 17:23:33,794 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ComponentContainerLookupHelper) Initializing constants on 696 lookup
    interface classes
    -  2014-10-20 17:23:34,793 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ComponentContainerLookupHelper) Done initializing lookup constants,
    time 994.138 ms
    -  2014-10-20 17:23:34,793 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ContextFactory) Registering Entities
    -  2014-10-20 17:23:37,183 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ContextFactory) 898 entities registered, time 2,385.217 ms
    -  2014-10-20 17:23:37,183 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ContextFactory) Registering Code Description queries
    -  2014-10-20 17:23:37,183 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ContextFactory) 52 code/description queries registered, time 0.113 m
    s
    -  2014-10-20 17:23:37,183 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ContextFactory) Registering algorithm spots
    -  2014-10-20 17:23:37,183 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ContextFactory) 248 algorithm spots registered, time 0.506 ms
    -  2014-10-20 17:23:37,183 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ContextFactory) Registering algorithm components
    -  2014-10-20 17:23:37,183 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ContextFactory) 114 algorithm components registered, time 0.090 ms
    -  2014-10-20 17:23:37,183 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ContextFactory) Registering batch jobs
    -  2014-10-20 17:23:37,183 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ContextFactory) 33 batch jobs registered, time 0.081 ms
    -  2014-10-20 17:23:37,198 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ContextFactory) Registering Components
    -  2014-10-20 17:23:37,198 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ContextFactory) 757 components registered, time 10.165 ms
    -  2014-10-20 17:23:37,198 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ContextFactory) Registering Change Handlers
    -  2014-10-20 17:23:37,198 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ContextFactory) 275 handlers registered, time 1.178 ms
    -  2014-10-20 17:23:37,198 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ContextFactory) Registering Services
    -  2014-10-20 17:23:37,214 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ContextFactory) 561 services registered, time 14.798 ms
    -  2014-10-20 17:23:37,214 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ContextFactory) Registering cobol programs
    -  2014-10-20 17:23:38,245 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ContextFactory) 571 cobol copybooks registered, time 1,028.872 ms
    -  2014-10-20 17:23:38,245 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ContextFactory) Registering cobol programs
    -  2014-10-20 17:23:38,245 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ContextFactory) 167 cobol programs registered, time 0.113 ms
    -  2014-10-20 17:23:38,245 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ApplicationContext) Building hibernate configuration
    -  2014-10-20 17:23:38,245 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ApplicationContext) Loaded hibernate.properties from external file E
    :\CCBDEV\spl\CCBV221\etc\conf\service\hibernate.properties
    -  2014-10-20 17:23:38,260 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ApplicationContext) Adding 898 hibernate mappings
    -  2014-10-20 17:23:40,853 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ApplicationContext)   Added 100 mappings
    -  2014-10-20 17:23:41,743 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ApplicationContext)   Added 200 mappings
    -  2014-10-20 17:23:42,633 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ApplicationContext)   Added 300 mappings
    -  2014-10-20 17:23:43,273 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ApplicationContext)   Added 400 mappings
    -  2014-10-20 17:23:43,898 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ApplicationContext)   Added 500 mappings
    -  2014-10-20 17:23:44,601 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ApplicationContext)   Added 600 mappings
    -  2014-10-20 17:23:45,366 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ApplicationContext)   Added 700 mappings
    -  2014-10-20 17:23:46,007 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ApplicationContext)   Added 800 mappings
    -  2014-10-20 17:23:46,553 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ApplicationContext)   Added 898 mappings
    -  2014-10-20 17:23:46,569 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ApplicationContext) Done building hibernate configuration, time 8,31
    5.014 ms
    -  2014-10-20 17:23:46,569 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ApplicationContext) Building hibernate session factory
    -  2014-10-20 17:23:47,506 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (hibernate.connection.ConnectionProviderFactory) Initializing connection provider: or
    g.hibernate.connection.C3P0ConnectionProvider
    -  2014-10-20 17:23:47,521 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (hibernate.connection.C3P0ConnectionProvider) C3P0 using driver: oracle.jdbc.driver.O
    racleDriver at URL: jdbc:oracle:thin:@SGPVORACLEUS001:1521:CCBDEMO
    -  2014-10-20 17:23:47,521 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (hibernate.connection.C3P0ConnectionProvider) Connection properties: {user=cisadm, pa
    ssword=****}
    -  2014-10-20 17:23:47,521 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (hibernate.connection.C3P0ConnectionProvider) autocommit mode: false
    -  2014-10-20 17:23:47,537 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (v2.log.MLog) MLog clients using log4j logging.
    -  2014-10-20 17:23:47,678 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (v2.c3p0.C3P0Registry) Initializing c3p0-0.9.1.2 [built 21-May-2007 15:04:56; debug?
    true; trace: 10]
    -  2014-10-20 17:23:47,693 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] WARN  (c3p0.management.ActiveManagementCoordinator) A C3P0Registry mbean is already registe
    red. This probably means that an application using c3p0 was undeployed, but not all PooledDataSources were closed prior to undeployment. This may lead to resource leaks over time. Please take care to
    close all PooledDataSources.
    -  2014-10-20 17:23:47,865 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (c3p0.impl.AbstractPoolBackedDataSource) Initializing c3p0 pool... com.mchange.v2.c3p
    0.PoolBackedDataSource@e670f49c [ connectionPoolDataSource -> com.mchange.v2.c3p0.WrapperConnectionPoolDataSource@4917967a [ acquireIncrement -> 1, acquireRetryAttempts -> 30, acquireRetryDelay -> 100
    0, autoCommitOnClose -> false, automaticTestTable -> null, breakAfterAcquireFailure -> false, checkoutTimeout -> 0, connectionCustomizerClassName -> null, connectionTesterClassName -> com.mchange.v2.c
    3p0.impl.DefaultConnectionTester, debugUnreturnedConnectionStackTraces -> false, factoryClassLocation -> null, forceIgnoreUnresolvedTransactions -> false, identityToken -> 1bqzx6i95cljqsv16r1xpu|409c6
    134, idleConnectionTestPeriod -> 0, initialPoolSize -> 1, maxAdministrativeTaskTime -> 0, maxConnectionAge -> 0, maxIdleTime -> 300, maxIdleTimeExcessConnections -> 0, maxPoolSize -> 150, maxStatement
    s -> 0, maxStatementsPerConnection -> 0, minPoolSize -> 1, nestedDataSource -> com.mchange.v2.c3p0.DriverManagerDataSource@501aa8b2 [ description -> null, driverClass -> null, factoryClassLocation ->
    null, identityToken -> 1bqzx6i95cljqsv16r1xpu|b8ab98f, jdbcUrl -> jdbc:oracle:thin:@SGPVORACLEUS001:1521:CCBDEMO, properties -> {user=******, password=******} ], preferredTestQuery -> null, propertyCy
    cle -> 0, testConnectionOnCheckin -> false, testConnectionOnCheckout -> false, unreturnedConnectionTimeout -> 0, usesTraditionalReflectiveProxies -> false; userOverrides: {} ], dataSourceName -> null,
    factoryClassLocation -> null, identityToken -> 1bqzx6i95cljqsv16r1xpu|2645b48a, numHelperThreads -> 3 ]
    -  2014-10-20 17:23:48,037 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (hibernate.dialect.Dialect) Using dialect: org.hibernate.dialect.Oracle10gDialect
    -  2014-10-20 17:23:48,052 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (hibernate.transaction.TransactionFactoryFactory) Transaction strategy: org.hibernate
    .transaction.JDBCTransactionFactory
    -  2014-10-20 17:23:48,052 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (hibernate.transaction.TransactionManagerLookupFactory) No TransactionManagerLookup c
    onfigured (in JTA environment, use of read-write or transactional second-level cache is not recommended)
    -  2014-10-20 17:23:48,099 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (hibernate.impl.SessionFactoryImpl) building session factory
    -  2014-10-20 17:23:55,662 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (hibernate.impl.SessionFactoryObjectFactory) Not binding factory to JNDI, no JNDI nam
    e configured
    -  2014-10-20 17:23:55,662 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ApplicationContext) Done building hibernate session factory, time 9,
    105.727 ms
    -  2014-10-20 17:23:55,771 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.sql.OracleFunctionReplacer) Oracle driver statement cache enabled with size
    of 300
    -  2014-10-20 17:23:55,802 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ApplicationContext) Database: Oracle, version: Oracle Database 11g R
    elease 11.1.0.0.0 - Production
    -  2014-10-20 17:23:55,802 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ApplicationContext) JDBC driver: Oracle JDBC driver, version: 10.2.0
    .2.0
    -  2014-10-20 17:23:56,052 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.CacheManager) Registering cache 'ModuleInfoCache'
    -  2014-10-20 17:23:56,068 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.sql.PreparedStatementImpl) SPL Statement result fetch size not specified by
    property spl.runtime.sql.fetchSize, defaulting to 300
    -  2014-10-20 17:23:56,099 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ApplicationContext) System owner is: 'CM'
    -  2014-10-20 17:23:56,115 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (cobol.host.CobolHostStartup) Using provided java command for remote cobol execution:
    E:/CCBDEV/Java/jdk1.5.0_21/bin/java.exe
    -  2014-10-20 17:23:56,115 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (cobol.host.CobolHostStartup) Using provided java command options for remote cobol ex
    ecution: -Xmx256m -server -Dfile.encoding=ISO8859_1 -cp E:/CCBDEV/spl/CCBV221/splapp/standalone/config;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/activation_api-1.1.jar;E:/CCBDEV/spl/CCBV221/splapp/s
    tandalone/lib/coherence-3.5.2.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/coherence-work-3.5.2.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/commonj-3.5.2.jar;E:/CCBDEV/spl/CCBV221/splapp/standa
    lone/lib/commons-beanutils-core-1.7.0.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/commons-cli-1.1.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/commons-codec-1.3.jar;E:/CCBDEV/spl/CCBV221/splapp
    /standalone/lib/commons-collections-2.1.1.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/commons-fileupload-1.2.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/commons-httpclient-2.0.2.jar;E:/CCBDEV/
    spl/CCBV221/splapp/standalone/lib/commons-io-1.3.2.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/commons-lang-2.2.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/commons-logging-1.0.4.jar;E:/CCBDEV/
    spl/CCBV221/splapp/standalone/lib/concurrent-1.3.4.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/dom4j-1.6.1.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/hibernate-3.2.7.jar;E:/CCBDEV/spl/CCBV221
    /splapp/standalone/lib/icu4j-3.6.1.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/jaxen-1.1.1.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/jcip-annotations.jar;E:/CCBDEV/spl/CCBV221/splapp/standal
    one/lib/jta.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/jtds-1.2.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/log4j-1.2.15.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/mail_api-1.4.jar;E:/CC
    BDEV/spl/CCBV221/splapp/standalone/lib/mfcobol.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/ojdbc5-11.1.0.7.0.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/orai18n-collation.jar;E:/CCBDEV/spl/CCB
    V221/splapp/standalone/lib/orai18n-mapping.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/orai18n-utility.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/orai18n.jar;E:/CCBDEV/spl/CCBV221/splapp/stan
    dalone/lib/serializer-2.7.0.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/spl-base-2.2.0.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/spl-ccb-2.3.1.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib
    /spl-servicebeaninterface-2.2.0.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/spl-serviceclient-2.2.0.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/spl-shared-2.2.0.jar;E:/CCBDEV/spl/CCBV221/splap
    p/standalone/lib/spl-spml-2.2.0.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/spl-web-2.2.0.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/spl-xai-2.2.0.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/
    lib/stax-api-1.0.1.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/stax2.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/staxmate-0.9.1.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/wstx-asl-3.2.1.j
    ar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/xalan-2.7.0.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/xmlparserv2.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/xquery.jar;E:/CCBDEV/spl/CCBV221/
    splapp/standalone/lib/xstream-1.2.1.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/yjp-controller-api-redist.jar;E:/CCBDEV/spl/CCBV221/splapp/standalone/lib/geronimo-spec-j2ee-1.4-rc4.jar
    -  2014-10-20 17:23:56,131 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (cobol.host.CobolHostStartup) Using starting port number 6503 for remote cobol execut
    ion.
    -  2014-10-20 17:23:56,146 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (cobol.host.SocketStrategy) Socket strategy set to com.splwg.base.support.cobol.host.
    sockets.WindowsPipeSocketStrategy
    -  2014-10-20 17:23:56,177 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (shared.environ.ApplicationProperties) Max number of simultaneous child JVM COBOL req
    uests is not specified via property spl.runtime.cobol.maxInflightRequests, defaulting to 12
    -  2014-10-20 17:23:56,177 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (shared.environ.ApplicationProperties) Timeout for zombie JVM detection is not specif
    ied via property spl.runtime.cobol.zombieDetectSecs, defaulting to 20
    -  2014-10-20 17:23:56,177 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (shared.environ.ApplicationProperties) Timeout to forcibly exit zombie child JVM is n
    ot specified via property spl.runtime.cobol.shunnedJVMExitSecs, defaulting to 40
    -  2014-10-20 17:23:56,177 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (shared.environ.ApplicationProperties) Child JVM maximum lifetime (seconds) is not sp
    ecified via property spl.runtime.cobol.remote.jvmMaxLifetimeSecs, defaulting to 0
    -  2014-10-20 17:23:56,177 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (shared.environ.ApplicationProperties) Child JVM maximum COBOL requests is not specif
    ied via property spl.runtime.cobol.remote.jvmMaxRequests, defaulting to 0
    -  2014-10-20 17:23:56,193 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (cobol.host.CobolHostStartup) Using active JVM count of 2 for remote cobol execution.
    -  2014-10-20 17:23:57,615 [JVM 1 INFO logger] INFO  (cobol.host.ProcessLogger) Remote JVM 1 started with arguments:  1 6505 6506 2
    -  2014-10-20 17:23:57,724 [JVM 1 INFO logger] INFO  (cobol.host.ProcessLogger) INFO: Loaded spl.properties from classpath: {spl.runtime.cobol.sql.cursoredCache.maxRows=10, spl.tools.loaded.applicati
    ons=base,ccb,cm, spl.runtime.cobol.sql.disableQueryCache=false, spl.runtime.utf8Database=true, spl.runtime.fusionlook=true, spl.runtime.cobol.encoding=UTF8, spl.runtime.cobol.sql.cache.maxTotalEntries
    =1000, spl.runtime.cobol.cobrcall=false, spl.runtime.cobol.sql.fetchSize=150, spl.runtime.environ.init.dir=E:/CCBDEV/spl/CCBV221/etc, spl.runtime.sql.highValue=?, spl.runtime.service.extraInstallation
    Services=CILTINCP, spl.runtime.oracle.statementCacheSize=300}
    -  2014-10-20 17:23:57,849 [JVM 1 INFO logger] INFO  (cobol.host.ProcessLogger)  -  2014-10-20 17:23:57,756 [Remote JVM:1 Main ] INFO  (cobol.host.SocketStrategy) Socket strategy set to com.splwg.bas
    e.support.cobol.host.sockets.WindowsPipeSocketStrategy
    -  2014-10-20 17:23:57,943 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.ContextFactory) Done creating default context, time 49,253.030 ms
    -  2014-10-20 17:23:57,943 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (api.globalContext.GlobalContextHelper) Start initializing UI context fields
    -  2014-10-20 17:23:57,959 [JVM 1 INFO logger] INFO  (cobol.host.ProcessLogger) Remote JVM 1 listening for requests on port: 6506
    -  2014-10-20 17:23:57,959 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (api.globalContext.GlobalContextHelper) End initializing UI context fields
    -  2014-10-20 17:23:57,959 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (service.impl.ServiceBeanContext) Done initializing ServiceBean, time 49,290.612 ms
    - 763005-2-1 2014-10-20 17:23:57,990 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (api.serviceinterception.InterceptorRepository) Processing interceptor decl
    aration ServiceConfig.xml
    - 763005-2-1 2014-10-20 17:23:57,990 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] WARN  (shared.common.Dom4JHelper) Cannot cache SAXParser instances for improved p
    erformance (JAXP 1.3 required)
    - 763005-2-1 2014-10-20 17:23:58,006 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (api.serviceinterception.ServiceInterceptors) Registering change intercepto
    r class com.splwg.wfmi.workforce.AppointmentInterceptor
    - 763005-2-1 2014-10-20 17:23:58,006 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (api.serviceinterception.ServiceInterceptors) Registering read interceptor
    class com.splwg.wfmi.workforce.AppointmentInterceptor
    - 763005-2-1 2014-10-20 17:23:58,006 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (api.serviceinterception.InterceptorRepository) Interceptor declaration CMS
    erviceConfig.xml not found on the classpath; skipping Interceptor processing
    - 763005-2-1 2014-10-20 17:23:58,068 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.CacheManager) Registering cache 'MaintenanceObjectInfoCach
    e'
    - 763005-2-1 2014-10-20 17:23:58,178 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.CacheManager) Registering cache 'MetaInformationRepository
    -  2014-10-20 17:23:58,381 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO  (support.context.CacheManager) Registering cache 'MetaInformationRepository'
    -  2014-10-20 17:23:58,912 [JVM 1 ERROR logger] ERROR (cobol.host.ProcessLogger) Exception in thread "Remote JVM:1 Thread 1" java.lang.UnsatisfiedLinkError: E:\MicroFocus\Bin\CBLJVM_SUN.DLL: Can't lo
    ad IA 32-bit .dll on a AMD 64-bit platform
    -  2014-10-20 17:23:59,037 [JVM 1 ERROR logger] ERROR (cobol.host.ProcessLogger)       at java.lang.ClassLoader$NativeLibrary.load(Native Method)
    -  2014-10-20 17:23:59,147 [JVM 1 ERROR logger] ERROR (cobol.host.ProcessLogger)       at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1751)
    -  2014-10-20 17:23:59,256 [JVM 1 ERROR logger] ERROR (cobol.host.ProcessLogger)       at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1676)
    -  2014-10-20 17:23:59,365 [JVM 1 ERROR logger] ERROR (cobol.host.ProcessLogger)       at java.lang.Runtime.loadLibrary0(Runtime.java:822)
    -  2014-10-20 17:23:59,475 [JVM 1 ERROR logger] ERROR (cobol.host.ProcessLogger)       at java.lang.System.loadLibrary(System.java:993)
    -  2014-10-20 17:23:59,584 [JVM 1 ERROR logger] ERROR (cobol.host.ProcessLogger)       at com.microfocus.cobol.RuntimeSystem.<clinit>(Unknown Source)
    -  2014-10-20 17:23:59,693 [JVM 1 ERROR logger] ERROR (cobol.host.ProcessLogger)       at com.splwg.base.support.cobol.host.CobolThread.run(CobolThread.java:30)
    -  2014-10-20 17:24:07,773 [JVM 1 ERROR logger] ERROR (cobol.host.ProcessLogger) java.lang.RuntimeException: No command runner was registered with this remote JVM after waiting 10000ms
    -  2014-10-20 17:24:07,773 [JVM 1 INFO logger] INFO  (cobol.host.ProcessLogger)  -  2014-10-20 17:24:07,773 [Remote JVM:1 Main ] INFO  (cobol.host.RemoteJVM) Shutting down loggers and exiting Remote
    JVM 1
    -  2014-10-20 17:24:07,882 [JVM 1 ERROR logger] ERROR (cobol.host.ProcessLogger)       at com.splwg.base.support.cobol.host.RemoteJVM.waitForServerToRegisterRunner(RemoteJVM.java:163)
    -  2014-10-20 17:24:07,991 [JVM 1 ERROR logger] ERROR (cobol.host.ProcessLogger)       at com.splwg.base.support.cobol.host.RemoteJVM.main(RemoteJVM.java:121)
    -  2014-10-20 17:24:09,304 [pool-2-thread-1] ERROR (cobol.host.OptimizedRemoteExecuterStub) An exception occurred invoking remote command.
    -  2014-10-20 17:24:09,304 [pool-2-thread-1] INFO  (cobol.host.RemoteJVMConnectionImpl) Connection to JVM 1 being shunned
    -  2014-10-20 17:24:09,304 [pool-2-thread-1] ERROR (cobol.host.RemoteJVMConnectionImpl) An exception has occurred calling the remote JVM
    -  2014-10-20 17:24:09,304 [pool-2-thread-1] ERROR (cobol.host.RotatingCommandRunnerProvider) Caught exception in Remote JVM connection housekeeper: com.splwg.base.support.cobol.host.InputClosedExcep
    tion:
    The following stacked messages were reported as the LoggedException was rethrown:
    com.splwg.base.support.cobol.host.OptimizedRemoteExecuterStub.sendRequestGetResponse(OptimizedRemoteExecuterStub.java:83): An exception has occurred calling the remote JVM
    com.splwg.base.support.cobol.host.OptimizedRemoteExecuterStub.sendRequestGetResponse(OptimizedRemoteExecuterStub.java:83): An exception occurred invoking remote command.
    The root LoggedException was: The input was closed.
    -  2014-10-20 17:24:10,679 [JVM 2 INFO logger] INFO  (cobol.host.ProcessLogger) Remote JVM 2 started with arguments:  2 6505 6506 2
    -  2014-10-20 17:24:20,727 [JVM 2 INFO logger] INFO  (cobol.host.ProcessLogger) INFO: Loaded spl.properties from classpath: {spl.runtime.cobol.sql.cursoredCache.maxRows=10, spl.tools.loaded.applicati
    ons=base,ccb,cm, spl.runtime.cobol.sql.disableQueryCache=false, spl.runtime.utf8Database=true, spl.runtime.fusionlook=true, spl.runtime.cobol.encoding=UTF8, spl.runtime.cobol.sql.cache.maxTotalEntries
    =1000, spl.runtime.cobol.cobrcall=false, spl.runtime.cobol.sql.fetchSize=150, spl.runtime.environ.init.dir=E:/CCBDEV/spl/CCBV221/etc, spl.runtime.sql.highValue=?, spl.runtime.service.extraInstallation
    Services=CILTINCP, spl.runtime.oracle.statementCacheSize=300}
    -  2014-10-20 17:24:20,837 [JVM 2 INFO logger] INFO  (cobol.host.ProcessLogger)  -  2014-10-20 17:24:20,743 [Remote JVM:2 Main ] INFO  (cobol.host.SocketStrategy) Socket strategy set to com.splwg.bas
    e.support.cobol.host.sockets.WindowsPipeSocketStrategy
    -  2014-10-20 17:24:20,946 [JVM 2 INFO logger] INFO  (cobol.host.ProcessLogger) Remote JVM 2 listening for requests on port: 6506
    -  2014-10-20 17:24:21,415 [JVM 2 ERROR logger] ERROR (cobol.host.ProcessLogger) Exception in thread "Remote JVM:2 Thread 1" java.lang.UnsatisfiedLinkError: E:\MicroFocus\Bin\CBLJVM_SUN.DLL: Can't lo
    ad IA 32-bit .dll on a AMD 64-bit platform
    -  2014-10-20 17:24:21,540 [JVM 2 ERROR logger] ERROR (cobol.host.ProcessLogger)       at java.lang.ClassLoader$NativeLibrary.load(Native Method)
    -  2014-10-20 17:24:21,649 [JVM 2 ERROR logger] ERROR (cobol.host.ProcessLogger)       at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1751)
    -  2014-10-20 17:24:21,759 [JVM 2 ERROR logger] ERROR (cobol.host.ProcessLogger)       at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1676)
    -  2014-10-20 17:24:21,868 [JVM 2 ERROR logger] ERROR (cobol.host.ProcessLogger)       at java.lang.Runtime.loadLibrary0(Runtime.java:822)
    -  2014-10-20 17:24:21,977 [JVM 2 ERROR logger] ERROR (cobol.host.ProcessLogger)       at java.lang.System.loadLibrary(System.java:993)
    -  2014-10-20 17:24:22,087 [JVM 2 ERROR logger] ERROR (cobol.host.ProcessLogger)       at com.microfocus.cobol.RuntimeSystem.<clinit>(Unknown Source)
    -  2014-10-20 17:24:22,196 [JVM 2 ERROR logger] ERROR (cobol.host.ProcessLogger)       at com.splwg.base.support.cobol.host.CobolThread.run(CobolThread.java:30)
    -  2014-10-20 17:24:30,776 [JVM 2 ERROR logger] ERROR (cobol.host.ProcessLogger) java.lang.RuntimeException: No command runner was registered with this remote JVM after waiting 10000ms

    Thanks for your response. I found that, when I copied the shared library to /usr/lib and
    did: ldconfig -n /usr/lib it worked
    But the problem is, this is my computer, but the computers that I am going to run my actual
    JNI application, have restrictive permission. Could anyone please let me know how I can
    do the work without ldconfig. I mean is there anyway I can configure my .so file's path without
    copying it into the /usr/lib folder and without ldconfig?
    I will appreciate any reply. Thanks.

  • Get Max no of Threads allowed by OS

    Is there a way in java to programatically get the maximum number of threads that are allowed to be created by an operating system?
    Thru my readings on forums, I gather that though there is no such limit for green-type of java threads (I am not sure what green-type means), other regular threads are bound by the max thread limit allowed by the kernel. Is there a way to programmtically get this limit?
    If there is no such API to get this information in Java directly, is there some command that can be invoked using the Runtim.exec() methods depending upon the OS type?
    Thank you

    It depends probably on the OS, the mem size, the number and type of CPUs... in short: Java isn't really supposed to care.
    There is no way, and IMO there also isn't really a need to know.

  • Thread Pool with Min,Max. and other thread parameters

    hello,
    I found an Implementation of ThreadPool in the java.sun.com,but it didn't have the minimum,maximum no. of threads implemented in the code.
    Could you help me find out an implementation of Thread Pool,that keeps track of minimum no. of threads,max. no. of threads in the pool,the increment size of threads,number of idle threads,idle time allowable for a thread,etc...
    I also need to know if it is possible to have >5000 threads in a ThreadPool,beacuse I get OutofMemoryError,when I used a ThreadPool( which didn't have any of the above-mentioned parameters!)
    Thanks!!!

    Having greater then 5000 threads is a sign of a problem with your design. Threads are relativly costly
    beasties. The idea of using a pool for your threads is that you won't need to use 5000 threads
    simultaniously. Most OS's will have problems trying to create this many threads per process (unless you
    tune the OS itself (which is normally not too difficult))
    matfud

  • Exception in thread "main" java.lang.NumberFormatException:For input String

    this is a code about arrylist. but when I debug it.it metion:Exception in thread "main" java.lang.NumberFormatException:For input String at java.lang.NumberFormatException.forInputString(numberFomatExceptionio java:48)
    at java.lang.Integer.parseInt(integer.java:468)
    at java.lang.Integer.parseInt(integer.java:497)
    at Get.getInt(manerger.java:208)
    at LinkList.insertFirst(manager.java:94)
    at manager.main(manager.java;20)
    this is my code:
    import java.io.*;
    import java.lang.*;
    public class manager
         public static void main(String args[]) throws IOException
         LinkList list=new LinkList();
         System.out.println("input S can scan the grade\ninput D can delete one entry\ninput U can update the entry\ninput A can add one entry\ninput E can end");
         int cr=System.in.read();
    switch(cr)
         case 'A':
         list.insertFirst();break;//this is 20 row
         case 'S':
         System.out.println("input the s");break;
         case 'D':
         System.out.println("input the d");break;
         case 'U':
         System.out.println("input the u");break;
    class Link
    public int number;
    public String name=new String();
    public int chs;
    public int eng;
    public int math;
    public Link next;
    public Link(int number,String name, int chs,int eng,int math)
    this.number=number;
    this.name=name;
    this.chs=chs;
    this.eng=eng;
    this.math=math;
    public Link()
         this(0,"",0,0,0);
    public void displayLink()
    System.out.println(number + " "+name+ " "+chs+ " "+eng+ " "+math+ " ");
    class LinkList
    public Link first;
    public LinkList()
    first = null;
    public boolean isEmpty()
    return first==null;
    public void displayList()
         System.out.println("");
         Link current=first;
         while(current!=null)
              current.displayLink();
              current=current.next;
         System.out.println("");
    public Link insertFirst() throws IOException
         Get getdata=new Get();
         int number=getdata.getInt();//this is 94 row
         String name=getdata.getString();
         int chs=getdata.getInt();
         int eng=getdata.getInt();
         int math=getdata.getInt();
         Link newLink = new Link(number,name,chs,eng,math);
         first=newLink;
         return first;
    public Link find(int key)
         Link current=first;
         while(current.number!=key)
              if(current.next==null)
              return null;
              else
              current=current.next;
         return current;
    public Link update(int key) throws IOException
         Link current=first;
         while(current.number!=key)
         if(current.next==null)
         return null;
         else
              System.out.println("Input the first letter of the subject:");
         int c=System.in.read();
         Get get=new Get();
              switch(c)
                   case 'c':
                   current.chs=get.getInt();break;
                   case 'e':
                   current.eng=get.getInt();break;
                   case 'm':
                   current.math=get.getInt();break;
         return current;
    public float average(char key)
         Link current=first;
         float total=0;
         float average=0;
         float counter=0;
         if(current==null)
         return 0;
         while(current!=null)
              switch(key)
                   case 'c':
                   total=current.chs+current.next.chs;break;
                   case 'e':
                   total=current.eng+current.next.eng;break;
                   case 'm':
                   total=current.math+current.next.math;break;
              current=current.next.next;
              counter++;
         average=total/counter;
         return average;
    public Link delete(int key)
         Link current=first;
         Link previous=first;
         while(current.number!=key)
              if(current.next==null)
              return null;
              else
                   previous=current;
                   current=current.next;
              if(current==first)
              first=first.next;
              else
              previous.next=current.next;
              return current;
    class Get
    public static String getString() throws IOException
    System.out.println("Input your name:");
    InputStreamReader str = new InputStreamReader(System.in);
    BufferedReader br = new BufferedReader(str);
    String s = br.readLine();
    return s;
    public static int getInt() throws IOException
    System.out.println("Input your data:");
    String st = getString();
    return Integer.parseInt(st);//this is 208 row
    }

    It may be that the code in getString() returns a
    String that ends with a newline. If that is the
    problem, you can use
    return (Integer.parseInt(st)).trim();1. getString will never return a String ending in newline. BufferedReader.readLine strips off the newline.
    2. Even if you had a newline, String.trim doesn't trim newlines.
    3. You would need to trim the String, not the int:
    return (Integer.parseInt(st.trim()));As JimDinosaur said, you are passing bad data (the value of "st").
    In getInt, add this before trying to parse "st":
    System.out.println("###"+st+"###");What does it print?

  • Max number of chars in process message MSEL?

    Hi, what is the max number of characteristics can be used in process message category's MSEL table? Right now, I am using more than 99 characteristics and I get a short dump DYNPRO_FIELD_CONVERSION. Is it really limited to 99 characteristics and if it is true, is there an OSS note to change it to allow more than 99?
    Thanks and points available

    Please make sure that you build a
    multithreaded program first (check with ldd).
    If anyone can tell me the maximum number of threads per process I would
    really appreicate it.
    Also the maximum number of open files per process. It depends on the architecture (x86/SPARC), OS version,
    64 or 32-bit, /etc/system, shell limitations (/usr/bin/ulimit) ...
    Search for "rlim_fd_max / rlim_fd_cur" on docs.sun.com too.
    HTH,
    -vladimir

  • Exception in thread "main" java.lang.OutOfMemoryError(please help me )

    Hi All
    here my java class trying to read a txt file(which is having size of 60MB).and putting each line into a Vector class. problem is ,upto certain number of line it is reading properly and putting into vector..after that it is giving error like Exception in thread "main" java.lang.OutOfMemoryError..what is the problem and how to rectify this one..anybody help me on this.
    actual situation is one txt is there in that 80 lakhs of lines of content is there..java file trying to read each line and put it into vector or stringbuffer and split it into two lines like key=value and put it into hashmap object.then finally iam creating new file(.properties) and writing these hashmap data on it. if you want clearly..please look into below code..
    package test.utf8; import java.io.*; import java.util.*; public class AssetUtils
    //static StringBuffer stringbuffer = new StringBuffer();
    public AssetUtils()
    public static void main(String args[]) throws IOException
    BufferedReader bufferedreader = new BufferedReader(new InputStreamReader(new FileInputStream("D:\\list.txt")));
    Vector vector = new Vector(0x30D40, 50000);
    System.out.println(vector.capacity());
    Object obj = null;
    int n=0;
    System.out.println("Reading list:" + new Date(System.currentTimeMillis()));
    do
    String s = bufferedreader.readLine();
    //System.out.println("line no: "+ ++n);
    if(s == null)
    break;
    vector.add(s);
    } while(true);
    System.out.println("List Read complete:" + new Date(System.currentTimeMillis()));
    String s1 = args[0];
    System.out.println("S1: "+s1);
    System.out.println(vector.capacity());
    HashMap hashmap = new HashMap();
    System.out.println( "Vector.Size..>>>>>>>>>>>>>>>>.."+vector.size());
    for(int i = 0; i < vector.size(); i++)
    System.out.println("i value:"+i);
    String s2 = (String)vector.get(i);
    //System.out.println("S2: "+s2);
    if(s2.indexOf("/") != -1)
    String s3 = s2.substring(s1.length(), s2.length());
    //System.out.println("S3: "+s3);
    if(s3.indexOf("/") != -1) {
    String s4 = s3.substring(0, s3.lastIndexOf("/"));
    //System.out.println("S4: "+s4);
    String s6 = s3.substring(s3.lastIndexOf("/") + 1, s3.length());
    //System.out.println("S6: "+s6);
    StringBuffer stringbuffer=null;
    stringbuffer = new StringBuffer();
    String s8 = (String)hashmap.get(s4);
    //System.out.println("S8: "+s8);
    if(s8 != null) stringbuffer.append(s8 + "," + s6);
    else
    stringbuffer.append(s6);
    hashmap.put(s4, stringbuffer.toString());
    //stringbuffer.delete(0,stringbuffer.length());
    stringbuffer=null;
    System.out.println("Opening asset.properties:" + new Date(System.currentTimeMillis()));
    File file = new File("D:\\asset.properties");
    PrintWriter printwriter = new PrintWriter(new FileOutputStream(file));
    String s5;
    String s7;
    for(Iterator iterator = hashmap.keySet().iterator(); iterator.hasNext(); printwriter.println(s5 + "=" + s7))
    { s5 = (String)iterator.next(); s7 = (String)hashmap.get(s5); } printwriter.close();
    System.out.println("Closing asset.properties:" + new Date(System.currentTimeMillis()));

    Theres a number of ways you can improve your memory usage:
    1) Build you map as you read in your file.
    2) Use StringBuffers in your map - do not use "asshaj" + "ashaskj" This is very memory intensive
    If you still run out of memory try running the JVM using -Xms128m -Xmx512m or higher

Maybe you are looking for

  • Boot Camp repair via Hybrid MBR fix after 5+ partitions

    With the understanding that Boot Camp only formally supports a Windows boot upon creation from a single Mac OSX data partition, I'm trying to determine if a fix exists for the following boot setup. The end result I'm pursing is a triple boot mac setu

  • Planned delivery time Pickup from inforecord not material master data

    Hi, Currently the delivery dates of the orders are calculated with the delivery time which is marked in MM02. Since the purchasing integrates this information in the info record, we want the delivery date to be calculated with delivery time of the in

  • ALE for message type BATMAS

    Hello I am trying to generate IDocs for a copy of the message type BATMAS and have added some custom fields to this new custom message type.. 1. I have created BD52 entries for this new custom message . But starngely the IDoc created is for message t

  • Letter bugs on iPad mini iOS 8

    Very recently iOS new version was installed but still showing letter bugs after criticism made for some Japanese site bugs. I use Kasperskey browser recently because kasperskey collect information who approach to the browser. Scare off the hackers. H

  • IMac (Intel) shuts down unexpectedly, a semi-loud 'boom!' is heard.

    Hello, I'm new here. Something just happened when I was using my Mac late at night yesterday, and when I was just searching for iTunes Library in Finder (which, in the end I couldn't find it), my screen went black and a boom sound was heard. After I