Java.lang.Runtime()

I made a small addition program using 'C'. It accepts 2 no.s and produces the result.
how can i send the 2 no.s to the C program? Here is the code i tried:
Runtime r=Runtime.getRuntime();
Process p=r.exec("add.exe");
InputStream ios=p.getInputStream();
OutputStream ops=p.getOutputStream();
String a="1\n", b="2\n", text;
ops.write(a.getBytes());
ops.write(b.getBytes());
BufferedReader br=new BufferedReader(InputStreamReader(ios));
while ( (text=br.readLine())!=null)
      System.out.println(text);I'm neither getting any output nor any error. What do i do? Plz help and thanks in advance.

Maybe this time:
ops.write(a.getBytes());
ops.write(b.getBytes());
ops.flush();
[/code[                                                                                                                                                                                               

Similar Messages

  • Java.lang.Runtime.exec problem in ubuntu 9.10

    Hi:
    I tried to run some command in the java code , for example "grass64 -text /home/data/location", this command works well in the terminal, however when I call it in the java code I got some excepetions.
    My code is :
    public class Grass {
         public static String grassBatJob="GRASS_BATCH_JOB";
         public void run(String cmd,String jobPath) {
              //set the environments variables
              Map<String, String> env=new HashMap<String, String>();
              env.put(grassBatJob, jobPath);
              String gisDataBase="/home/kk/grass/GrassDataBase";
              String location="spearfish60";
              String mapset="PERMANENT";
              cmd=cmd+" "+gisDataBase+"/"+location+"/"+mapset;
              CommandLine line=new CommandLine(cmd);
              //the real cmd should be >>grass64 -text /home/kk/grass/GrassDataBase/spearfish60/PERMANENT
              System.out.println("start line=="+line.toString());
              DefaultExecutor de=new DefaultExecutor();
              try {
                   int index=de.execute(line,env);
                   System.out.println(index);
              } catch (ExecuteException e) {
                   e.printStackTrace();
              } catch (IOException e) {
                   e.printStackTrace();
         public static void main(String[] args) {
              String jobPath=Grass.class.getResource("grass.sh").getFile();
              new Grass().run("grass64 -text", jobPath);
    The real cmd I want to execute is "grass64 -text /home/kk/grass/GrassDataBase/spearfish60/PERMANENT" with the envrionment variable "GRASS_BATCH_JOB=jobPath",it works well in the ternimal ,however in my application I got the exception"
    java.io.IOException: Cannot run program "grass64 -text /home/kk/grass/GrassDataBase/spearfish60/PERMANENT": java.io.IOException: error=2, No such file or directory
         at java.lang.ProcessBuilder.start(ProcessBuilder.java:459)
         at java.lang.Runtime.exec(Runtime.java:593)
         at org.apache.commons.exec.launcher.Java13CommandLauncher.exec(Java13CommandLauncher.java:58)
         at org.apache.commons.exec.DefaultExecutor.launch(DefaultExecutor.java:246)
         at org.apache.commons.exec.DefaultExecutor.executeInternal(DefaultExecutor.java:302)
         at org.apache.commons.exec.DefaultExecutor.execute(DefaultExecutor.java:149)
         at org.kingxip.Grass.run(Grass.java:27)
         at org.kingxip.Grass.main(Grass.java:38)
    Caused by: java.io.IOException: java.io.IOException: error=2, No such file or directory
         at java.lang.UNIXProcess.<init>(UNIXProcess.java:148)
         at java.lang.ProcessImpl.start(ProcessImpl.java:65)
         at java.lang.ProcessBuilder.start(ProcessBuilder.java:452)
         ... 7 more
    I wonder why?

    Thanks for all of your reply, and now I can run the command, however I met some problems when I tried to get the result of the exec.
    The core codes are shown below:
    String cmd="g.version";
    String[] exe={"bash","-c",cmd};
    Process p1=Runtime.getRuntime.exec(exe,env); // the env has been set
    GrassThread outThread=new GrassThread("out", p1.getInputStream());
    outThread.start();
    GrassThread errorThread=new GrassThread("error", p1.getErrorStream());
    errorThread.start();
    int exitVal = p1.waitFor();
    String resu=outThread.sb.toString();
    System.out.println("==========the output start========");
    System.out.println(resu);
    System.out.println("==========the output end========");
    System.out.println("ExitValue: " + exitVal); //------------------> line one
    public class GrassThread extends Thread{
         public StringBuffer sb=new StringBuffer();
         public GrassThread(String type,InputStream is) {
              this.type=type;
              this.is=is;
         public void run() {
              try {
                   InputStreamReader isr = new InputStreamReader(is);
                   BufferedReader br = new BufferedReader(isr);
                   String line = null;
                   while ((line = br.readLine()) != null) {
                        System.out.println(type + ">" + line);
                        sb.append(line).append("\r");  // ----------------------------> line two
    }I define a StringBuffer in the GrassThread to save the output (see the code where I marked by "line two"), and when the process complete, I check the StringBuffer to get the output (see code where I marked by "line one"), however the output in the console of the IDE are :
    ----------- output in the console of the IDE start -------------
    ==========the output start========
    ==========the output end========
    ExitValue: 0
    out>GRASS 6.4.0RC5 (2009)
    ----------output in the console of the IDE end--------------------
    I can not understand, in the code "line one", I first get the output using "System.out.println(resu);",then I print the exitvalue,but why the order of the output in the console is not what I expected?
    Another question, the code above assume the output can be got from the Process's getInputStream, however sometimes the output maybe come from the Process's getErrorStream, so how to handle it?
    Edited by: apachemaven on 2010-3-5 ??5:38

  • Invoke exe through java code(using java.lang.Runtime)

    Iam trying to invoke an exe from java code.If i give the complete path for that exe it is running fine .But if i set the environment variable and directly execute the exe through command prompt it iss running fine , but it fails to run when i do the same using java code i.e. java.lang.Runtime.exec function

    Give "//" for directory seperator.
    E.g. r.exec("c://test//test.exe",null);
    Why? That doesn't look correct.It is correct. It will work fine. Try it out.But it doesn't add or solve anything. A forward slash
    does not need to be escaped.'
    It's not even escaping. It's just doubling up. If that works, I'd bet "C://///test///////test.exe" does also.

  • Hi java.lang.System.gc() vs java.lang.Runtime.gc()

    hi all what is the exact diff.,
    java.lang.System.gc() vs java.lang.Runtime.gc()
    why dont I call Runtime.gc() like System.gc(), is ther any possibility ?
    Thanks in advance

    Thanks, but I just want to call Runtime.gc() like
    System.gc() forcefully to invoke finalize() method
    Thanks in advanceThe calls are the same. Read the javadoc:
    http://java.sun.com/j2se/1.5.0/docs/api/java/lang/System.html#gc()
    public static void gc()
    Runs the garbage collector.
    Calling the gc method suggests that the Java Virtual Machine expend effort toward recycling unused objects in order to make the memory they currently occupy available for quick reuse. When control returns from the method call, the Java Virtual Machine has made a best effort to reclaim space from all discarded objects.
    The call System.gc() is effectively equivalent to the call:
    Runtime.getRuntime().gc()

  • Java/lang/Runtime exception

    java.lang.RuntimeException: IOException reading reader invalid byte 1110011 error caused while running sun Wireless tool kit.Can any body please help me to solve this problem. I am using Eclipse 3.3 and also eclipse 3.2
    with sun java wireless toolkit in ubuntu.
    Thanks and Regards,
    Pandian

    Support for the RecipeFox extension is over here: <br />
    http://recipetools.sourceforge.net/phpBB3/index.php

  • Invoke RealVNC using java code(java.lang.Runtime)

    I would like to invoke vncviewer exe whenever user presses a button.Please help

    What part are you having trouble with? What have you done so far?
    Note that you have two main problems to solve here.
    Do you know how to perform a given action when a button is pressed? If not, google for a swing tutorial. You'll want some kind of Listener, though I don't know the specific class name.
    Do you know how to invoke another executable program from within a Java app? If not, look into Runtime.exec.

  • Java.lang.Runtime.exec() again

    try{
    Process registryProcess = null;
    Runtime r = Runtime.getRuntime();
    String[] cmdArray = {"F:\\windump", ">>new_res.txt"};
    registryProcess = r.exec(cmdArray);
    }catch(Exception ex){
    System.out.println("Exception Caught: " + ex.getMessage());
    ** Have also tried speicfying the command and the parameters all in the one string like so :
    String cmd = "F:\\windump >>F:\\new_res.txt";
    registryProcess = r.exec(cmd);

    try
    String cmd = "cmd /c F:\\windump >> F:\\new_res.txt";
    registryProcess = r.exec(cmd);

  • Java.lang.Runtime.exec()

    When using the exec method I cannot get it to run the specified application when I try to use the Runtime.execString[] cmdArray)
    The application I am running is windump, it runs ok when I specify it in the Runtime.exec(String cmd) method.
    I need to use the Runtime.exec(String[] cmdArray) option as I need to specify parameters as part of my project. To be exact I need to tell it to output to a text file.
    I can do this when running windump from the command prompt, thus cannot understand whty it wont work when I specify the same option from Runtime.exec(..)
    Any ideas how to overcome this?
    thanks Conor

    This works for me on WindowsNT:
    try {
         Runtime.getRuntime().exec("cmd.exe /c dir>dirtest.txt");
    catch (Exception e) {}
    [/code}
    Mark

  • I am trying to set up Recipefox to export MasterCook 11. What configurations should be "export" box. I am also getting an error message that Java.lang.Runtime exception. could not create a new folder for the writer.

    When Igo to "Export them" a box shows that my configuration paths are not correct.

    Support for the RecipeFox extension is over here: <br />
    http://recipetools.sourceforge.net/phpBB3/index.php

  • 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.

  • Java.lang.ExceptionInInitializerError - while using a third party tool

    Hi All,
    I am trying to include truezip into my application. but I get the following stack trace.
    When I tried using the truezip in a standalone java class it orked but I am unable to make it work with appserver.
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    javax.servlet.ServletException
         org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:830)
         org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:763)
         org.apache.jsp.TestDes_jsp._jspService(TestDes_jsp.java:75)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:105)
    root cause
    java.lang.ExceptionInInitializerError
         de.schlichtherle.io.File.init(File.java:818)
         de.schlichtherle.io.File.(File.java:471)
         de.schlichtherle.io.File.(File.java:452)
         org.apache.jsp.TestDes_jsp._jspService(TestDes_jsp.java:63)
    note The full stack trace of the root cause is available in the Sun-Java-System/Application-Server logs.If I refresh the jsp page it shows the foloowing error
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    javax.servlet.ServletException
         org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:830)
         org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:763)
         org.apache.jsp.TestDes_jsp._jspService(TestDes_jsp.java:75)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:105)
    root cause
    java.lang.NoClassDefFoundError
         de.schlichtherle.io.File.init(File.java:818)
         de.schlichtherle.io.File.(File.java:471)
         de.schlichtherle.io.File.(File.java:452)
         org.apache.jsp.TestDes_jsp._jspService(TestDes_jsp.java:63)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:105)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:860)
    note The full stack trace of the root cause is available in the Sun-Java-System/Application-Server logs.
    --------------------------------------------------------------------------------Can anyone help me on this please
    Thanks,
    R.Ramesh.

    Hi Balusc,
    here is the full stack trace
    java.lang.ExceptionInInitializerError
         at de.schlichtherle.io.File.init(File.java:830)
         at de.schlichtherle.io.File.<init>(File.java:479)
         at de.schlichtherle.io.File.<init>(File.java:458)
         at org.apache.jsp.TestDes_jsp._jspService(TestDes_jsp.java:63)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:105)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:860)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:336)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:297)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:247)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:860)
         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:585)
         at org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:249)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
         at org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:282)
         at org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:165)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:257)
         at org.apache.catalina.core.ApplicationFilterChain.access$000(ApplicationFilterChain.java:55)
         at org.apache.catalina.core.ApplicationFilterChain$1.run(ApplicationFilterChain.java:161)
         at java.security.AccessController.doPrivileged(Native Method)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:263)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:551)
         at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:225)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:173)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:551)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:170)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:551)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:132)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:551)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:933)
         at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:189)
         at com.sun.enterprise.web.connector.grizzly.ProcessorTask.doProcess(ProcessorTask.java:604)
         at com.sun.enterprise.web.connector.grizzly.ProcessorTask.process(ProcessorTask.java:475)
         at com.sun.enterprise.web.connector.grizzly.ReadTask.executeProcessorTask(ReadTask.java:371)
         at com.sun.enterprise.web.connector.grizzly.ReadTask.doTask(ReadTask.java:264)
         at com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:281)
         at com.sun.enterprise.web.connector.grizzly.WorkerThread.run(WorkerThread.java:83)
    Caused by: java.security.AccessControlException: access denied (java.lang.RuntimePermission shutdownHooks)
         at java.security.AccessControlContext.checkPermission(AccessControlContext.java:264)
         at java.security.AccessController.checkPermission(AccessController.java:427)
         at java.lang.SecurityManager.checkPermission(SecurityManager.java:532)
         at java.lang.Runtime.addShutdownHook(Runtime.java:188)
         at de.schlichtherle.io.ArchiveControllers.<clinit>(ArchiveControllers.java:67)
         ... 41 moreafter which if I refresh my jsp page I get the foloowing stack trace as in my next post

  • Java.lang.UnsatisfiedLinkError: ocijdbc9.dll: Can't find dependent librarie

    Hi all,
    I have written a simple code to connect to Oracle9i in WindowsXP.
    Oracle is installed and running on Linux machne on the Intranet.
    I have set 'classes12.jar' in classpath and placed following dlls in "C:\WINDOWS\system32" path
    ocijdbc9.dll
    ocijdbc9_g.dll
    heteroxa9.dll
    heteroxa9_g.dll
    Following is the part of code:
    public String dbName = new String("jdbc:oracle:oci8:username/password@sid_192.168.0.128");
    public String dbClassName = new String("oracle.jdbc.driver.OracleDriver");
    Class.forName(dbClassName);
    conection = DriverManager.getConnection(dbName);
    statement = conection.createStatement();
    When I run this code got following errors:
    java.lang.UnsatisfiedLinkError: C:\WINDOWS\system32\ocijdbc9.dll: Can't find dependent libraries
         at java.lang.ClassLoader$NativeLibrary.load(Native Method)
         at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1560)
         at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1485)
         at java.lang.Runtime.loadLibrary0(Runtime.java:788)
         at java.lang.System.loadLibrary(System.java:834)
         at oracle.jdbc.oci8.OCIDBAccess.logon(OCIDBAccess.java:262)
         at oracle.jdbc.driver.OracleConnection.<init>(OracleConnection.java:346)
         at oracle.jdbc.driver.OracleDriver.getConnectionInstance(OracleDriver.java:468)
         at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:314)
         at java.sql.DriverManager.getConnection(DriverManager.java:512)
         at java.sql.DriverManager.getConnection(DriverManager.java:193)
         at menus.SQLShelfManager.openDBconnecton(SQLShelfManager.java:46)
         at menus.SQLShelfManager.main(SQLShelfManager.java:129)
    Exception in thread "main"
    Please guide me, what I am missing? Thanks in advance...

    There are only a very very few and rare good reasons to use the oci8 driver with Java (and I can't remember any of them at the moment). Performance is not one of them. If at all possible, you should use the Type IV (thin) driver instead.
    The classes12.jar (or zip) is for use with Java 1.2 and 1.3. There are different versions of this jar for each version of the database, but they're fundamentally cross-compatible; all the post-8i drivers are supposed to work with all the post-8i databases (and the 8i stuff also mostly works too). There's been a succession of bug fixes and minor functional changes, as well as some very substantial perfromance improvements. If you are developing brand-new code, I very stongly encourage you to use the very latest driver (currently 10.2.0.1, I think). If you are using a Java version greater than 1.3, then you should use the ojdbc14.jar instead (and don't try to use both classes12.jar and ojdbc14.jar, they have the sameclasses in them). I think the 10.2.0.1 ojdb14.jar was the first one certified for Java 1.5, and it's significantly faster than the 9i drivers. Anyone considering an upgrade of drivers should plan to do a good regression test; as mentioned before, there are some very small functional differences. You can download the latest drivers here:
    http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/index.html
    If you insist on using oci, then you probably need to do an Oracle client installation on your Windows box. If you stay with the 9i driver, the full client install is huge; however, you can almost certainly use the 10g "Instant Client", which is a pared-down version, with just the minimal stuff to support an application. That's available here:
    http://www.oracle.com/technology/tech/oci/instantclient/instantclient.html

  • Java.lang.UnsatisfiedLinkError: D:\...*dll: Can't find dependent libraries

    Hello,
    Every time I try run my application I get this:
    Exception in thread "main" java.lang.UnsatisfiedLinkError: D:\Java_przyklady\Met
    ody_macierzyste\HelloNative.dll: Can't find dependent libraries
    at java.lang.ClassLoader$NativeLibrary.load(Native Method)
    at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1560)
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1485)
    at java.lang.Runtime.loadLibrary0(Runtime.java:788)
    at java.lang.System.loadLibrary(System.java:834)
    at HelloNative.<clinit>(HelloNative.java:12)
    at HelloNativeTest.main(HelloNativeTest.java:10)
    This application is example which was provided with book- Core Java 2
    Here is exactly what I have:
    HelloNative.java
    class HelloNative
       public static native void greeting();
       static
          System.loadLibrary("HelloNative");
    }HelloNativeTest.java
    class HelloNativeTest
       public static void main(String[] args)
           HelloNative.greeting();
    }Here is my HelloNative.c
    #include "HelloNative.h"
    #include <stdio.h>
    JNIEXPORT void JNICALL Java_HelloNative_greeting(JNIEnv* env,
       jclass cl)
       printf("Hello world!\n");
    }and HelloNative.h
    /* DO NOT EDIT THIS FILE - it is machine generated */
    #include <jni.h>
    /* Header for class HelloNative */
    #ifndef _Included_HelloNative
    #define _Included_HelloNative
    #ifdef __cplusplus
    extern "C" {
    #endif
    * Class:     HelloNative
    * Method:    greeting
    * Signature: ()V
    JNIEXPORT void JNICALL Java_HelloNative_greeting
      (JNIEnv *, jclass);
    #ifdef __cplusplus
    #endif
    #endifI did:
    javac HelloNative.java (I got HelloNative.class)
    javah HelloNative (I got HelloNative.h)
    gcc -c -D__int64="long long" -Ic:\j2sdk1.4.2\include\ -Ic:\j2sdk1.4.2\include\win32 HelloNative.c (I got HelloNative.o)
    dllwrap --add-stdcall-alias -o HelloNative.dll HelloNative.obut here I got:
    dllwrap: no export definition file provided
    Creating one, but that may not by what you wantand
    HelloNative.dll
    May by I made mistake used dllwrap, what this feedback means for me?
    So, when I did everything what I wrote abow I got:
    HelloNative.class
    HelloNative.h
    HelloNative.o
    HelloNative.dll
    and I run
    HelloNativeTest.class and I got above Error
    I use j2sdk1.4.2 and Windows XP
    Could anybody tell me what I did wrong???
    I will be appreciate

    The "Native Methods" forum is for JNI questions.
    See this thread...
    http://forum.java.sun.com/thread.jspa?forumID=52&threadID=534964

  • Java.lang.UnsatisfiedLinkError.Can't find dependent libraries

    Hello,
    I call in an applet a library "ezmodJava.dll" in order to execute a native method. It works very well in my computer (Windows 98). I've put "ezmodJava.dll" and a dependent library "ezmod.dll" in directory C:\Windows. That works very well.
    Now , i try to run the applet in a station(Windows XP) (in a network). I've installed the libraries "ezmodJava.dll" and "ezmod.dll" in C:\windows, but it doesn't work. I've put them in C:\windows\system and in C:\windows\system32 but no way. The last error i had IS :
    java.lang.UnsatisfiedLinkError: C:\WINDOWS\system32\EzmodJava.dll: Can't find dependent libraries
         at java.lang.ClassLoader$NativeLibrary.load(Native Method)
         at java.lang.ClassLoader.loadLibrary0(Unknown Source)
         at java.lang.ClassLoader.loadLibrary(Unknown Source)
         at java.lang.Runtime.loadLibrary0(Unknown Source)
         at java.lang.System.loadLibrary(Unknown Source)
         at Ezmod.getSolution(Ezmod.java:51)
         at app.validation.algos.lp.LPEzmod.getEzmodSolution(LPEzmod.java:213)
         at app.validation.algos.lp.LPEzmod.solveProblem(LPEzmod.java:85)
         at app.validation.algos.lp.LinearProblem.init(LinearProblem.java:93)
         at app.validation.algos.lp.LinearProblem.<init>(LinearProblem.java:73)
         at app.validation.Evaluation.solveLPProblem(Evaluation.java:1233)
         at app.validation.Evaluation$1.run(Evaluation.java:1061)
    Any help will be appreciated. Thank you too much.

    on your computer you might have multiple copies of the dll. try temporarily renaming the dll...then run the program. if it runs, you know you have another copy somewhere. do a search and find the extra copy...rename it and run your program. your program should fail then and you will find which directory your program is looking in for the dll.
    txjump

  • Java.lang.NullPointerException in Parser

    Hi,
    I appreciate any idea that can help me.
    I'm processing a sql sentence that can retrive 10.000 rows with XSU.
    I generate xml files with 1000 rows from the resultset and then I transform this xmls into xml files based of Onix Standard.
    I've nullpointer exception in random way, but I supose that there is a problem when the xml files are transformed.
    There are any limitation for user parser and tranformer. I supose that there is a memory problem with this because the class consume a lot of CPU memory.
    Thank in advance.

    Thank every body.
    I increase -mx stack to 200 but the NullPointerexception followed showed in my screen.
    In that moment I'm running the java program with jdk1.2.2, because Jdeveloper look like very hard.
    Some of random exception are here:
    Java.lang.NullPointerException
    void java.io.OutputStreamWriter.write(char[], int, int)
    void oracle.xml.parser.v2.XMLOutputStream.flush()
    void oracle.xml.parser.v2.XMLPrintDriver.printElement(oracle.xml.parser.v2.XMLElement)
    void oracle.xml.parser.v2.XMLPrintDriver.printChildNodes(oracle.xml.parser.v2.XMLNode)
    void oracle.xml.parser.v2.XMLPrintDriver.printElement(oracle.xml.parser.v2.XMLElement)
    void oracle.xml.parser.v2.XMLPrintDriver.printChildNodes(oracle.xml.parser.v2.XMLNode)
    void oracle.xml.parser.v2.XMLPrintDriver.printElement(oracle.xml.parser.v2.XMLElement)
    void oracle.xml.parser.v2.XMLPrintDriver.printChildNodes(oracle.xml.parser.v2.XMLNode)
    void oracle.xml.parser.v2.XMLDocument.print(oracle.xml.parser.v2.PrintDriver)
    void oracle.xml.parser.v2.XMLDocument.print(java.io.OutputStream)
    void onix.IsbnXmlProcessor.main(java.lang.String[])
    Exception in thread main
    Se genero la excepcion al instanciar un Stylesheet
    java.lang.NullPointerException
    java.lang.String java.lang.String.intern()
    java.lang.String oracle.xml.parser.v2.XSLParseString.getQname()
    int oracle.xml.parser.v2.XSLParseString.nextToken()
    oracle.xml.parser.v2.XSLExprBase oracle.xml.parser.v2.XSLNodeSetExpr.parse(oracle.xml.parser.v2.XSLParseString, boolean, boolean)
    oracle.xml.parser.v2.XSLPatternInt oracle.xml.parser.v2.XSLExprBase.createPattern(java.lang.String, oracle.xml.parser.v2.NSResolver)
    void oracle.xml.parser.v2.XSLTemplate.<init>(oracle.xml.parser.v2.XMLElement, oracle.xml.parser.v2.XSLStylesheet, int, int)
    void oracle.xml.parser.v2.XSLStylesheet.updateStylesheet(oracle.xml.parser.v2.XMLDocument, int)
    void oracle.xml.parser.v2.XSLStylesheet.initStylesheet(oracle.xml.parser.v2.XMLDocument, java.net.URL)
    void oracle.xml.parser.v2.XSLStylesheet.<init>(oracle.xml.parser.v2.XMLDocument, java.net.URL)
    void onix.XMLToFile.transform(oracle.xml.parser.v2.XMLDocument, java.lang.String, java.lang.String)
    void onix.IsbnXmlGenerator.main(java.lang.String[])
    Se genero la excepcion al procesarse el xsl
    java.lang.NullPointerException
    void oracle.xml.parser.v2.XSLProcessor.processXSL(oracle.xml.parser.v2.XSLStylesheet, oracle.xml.parser.v2.XMLDocument, java.io.OutputStream)
    void onix.XMLToFile.transform(oracle.xml.parser.v2.XMLDocument, java.lang.String, java.lang.String)
    void onix.IsbnXmlGenerator.main(java.lang.String[])
    Se genero onix_2000.xml
    java.lang.NullPointerException
    void java.lang.Runtime.gc()
    void java.lang.System.gc()
    void onix.IsbnXmlGenerator.main(java.lang.String[])
    Exception in thread main
    java.lang.NullPointerException
    java.lang.String java.lang.StringBuffer.toString()
    void oracle.xml.parser.v2.XMLPrintDriver.printEndTag(oracle.xml.parser.v2.XMLElement, boolean)
    void oracle.xml.parser.v2.XMLPrintDriver.printElement(oracle.xml.parser.v2.XMLElement)
    void oracle.xml.parser.v2.XMLPrintDriver.printChildNodes(oracle.xml.parser.v2.XMLNode)
    void oracle.xml.parser.v2.XMLPrintDriver.printElement(oracle.xml.parser.v2.XMLElement)
    void oracle.xml.parser.v2.XMLPrintDriver.printChildNodes(oracle.xml.parser.v2.XMLNode)
    void oracle.xml.parser.v2.XMLPrintDriver.printElement(oracle.xml.parser.v2.XMLElement)
    void oracle.xml.parser.v2.XMLPrintDriver.printChildNodes(oracle.xml.parser.v2.XMLNode)
    void oracle.xml.parser.v2.XMLDocument.print(oracle.xml.parser.v2.PrintDriver)
    void oracle.xml.parser.v2.XMLDocument.print(java.io.OutputStream)
    void onix.IsbnXmlGenerator.setGenerator(java.lang.String)
    void onix.IsbnXmlGenerator.<init>(java.lang.String)
    void onix.IsbnXmlProcessor.main(java.lang.String[])
    java.lang.NullPointerException
    void oracle.xml.parser.v2.XMLPrintDriver.printEndTag(oracle.xml.parser.v2.XMLElement, boolean)
    void oracle.xml.parser.v2.XMLPrintDriver.printEl ement(oracle.xml.parser.v2.XMLElement)
    void oracle.xml.parser.v2.XMLPrintDriver.printChildNodes(oracle.xml.parser.v2.XMLNode)
    void oracle.xml.parser.v2.XMLPrintDriver.printElement(oracle.xml.parser.v2.XMLElement)
    void oracle.xml.parser.v2.XMLPrintDriver.printChildNodes(oracle.xml.parser.v2.XMLNode)
    void oracle.xml.parser.v2.XMLPrintDriver.printElement(oracle.xml.parser.v2.XMLElement)
    void oracle.xml.parser.v2.XMLPrintDriver.printChildNodes(oracle.xml.parser.v2.XMLNode)
    void oracle.xml.parser.v2.XMLDocument.print(oracle.xml.parser.v2.PrintDriver)
    void oracle.xml.parser.v2.XMLDocument.print(java.io.OutputStream)
    void onix.IsbnXmlGenerator.setGenerator(java.lang.String)
    void onix.IsbnXmlGenerator.<init>(java.lang.String)
    void onix.IsbnXmlProcessor.main(java.lang.String[])
    Somebody Know how can I use OracleXMLQuery getSAX method....I appreciate an examples.
    null

Maybe you are looking for

  • Fire fox can't show google images like I previous seen.

    When I want to watch some pictures from google.com/images the fire fox show the pictures page very long.. and the preview is change from before.. what should I do to this problem.. reply me in my mail account.. Problem snapshot. forum link [url=http:

  • How to add an Addressbook Entry to Messenger Express with bind needed

    Hallo, I wan't to add a User defined Directory Lookup to the Messenger Express as described in the "Messenger Express Customization Guide" on Page 60 and up. An Anonymouse Search over a LDAP-Server is no problem, but i need to bind first. In the docu

  • Rebate type

    We get wrong settlements for a rebate type: 1. The system does not ask for an assignment. 2. the related accounting document does contain a posting on the customer number when it should be the GL Code. I already checked the Agreement type, and there

  • Why Design View will be removed?

    My question is that: why Design View will be removed from Flash Builder? Will it be substituted by another way of doing the things visually? Will adobe provide other visual tool to design applications? Disabling Design view and extinguing Catalyst se

  • I need help activating CS3 on a new computer

    I work for a non-profit and I have had CS3 for 6 years. My computer just died. We were able to install the program on the new computer (Windows 7) and we have the serial number, but the number of activations have been exceeded. I was not able to deac