Java.lang.UnsatisfiedLinkError: running tomcat on java headless?

Dear all,
I'm using the iText library to generate pdfs from a database on the fly. Whenever I use some of it's features that require simple things like java.awt.Color, I get an java.lang.UnsatisfiedLinkError as shown:
java.lang.UnsatisfiedLinkError: /usr/lib/jvm/java-1.5.0-sun-1.5.0.18/jre/lib/amd64/libawt.so: libmlib_image.so: cannot open shared object file: No such file or directory
        at java.lang.ClassLoader$NativeLibrary.load(Native Method)
        at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1751)
        at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1668)
        at java.lang.Runtime.loadLibrary0(Runtime.java:822)
        at java.lang.System.loadLibrary(System.java:993)
        at sun.security.action.LoadLibraryAction.run(LoadLibraryAction.java:50)
        at java.security.AccessController.doPrivileged(Native Method)
        at java.awt.Toolkit.loadLibraries(Toolkit.java:1509)
        at java.awt.Toolkit.<clinit>(Toolkit.java:1530)
        at java.awt.Color.<clinit>(Color.java:250)
        at tablereport.processRequest(tablereport.java:55)
        at tablereport.doGet(tablereport.java:130)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
        at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:269)
        at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188)
        at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
        at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:172)
        at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
        at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117)
        at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:108)
        at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:174)
        at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:874)
        at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:665)
        at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:528)
        at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:81)
        at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:689)
        at java.lang.Thread.run(Thread.java:595)After some research and verifying that libawt.so physically exists I read somewhere that whenever java is installed no a linux box without x (in my case it's a remote vps) java omits certain graphics related libraries like AWT (naturally).
I also read that you can run java headless to avoid the dependencies to X. Now is there a way to run tomcat (or add variables to tomcat's startup.sh) to avoid having these dependencies?
Thanks for your help,
William

[Googling the exception|http://www.google.com/search?q=java.lang.UnsatisfiedLinkError+at+java.awt.Color.%3Cclinit%3E%28Color.java%3A250%29+tomcat] learns me it's a bug in the mentioned Tomcat + JDK combo.
Upgrade to the latest if possible.

Similar Messages

  • Error running applet, java.lang.UnsatisfiedLinkError: enableModeless

    hi guys
    I write an applet with JDevloper 3.1 using Oracle's B4J to connect to oracle 8.1.5. In Jdev all works fine. After deploying with the wizard to a webserver und running the applet using JRE 1.2.2 i got the following exception:
    Opening http://test.woow.at/awork/oracle/dacf/control/ResTable_de_DE.class no proxy
    Opening http://test.woow.at/awork/oracle/dacf/control/ResTable_de_DE.properties no proxy
    Opening http://test.woow.at/awork/oracle/dacf/control/ResTable_de.class no proxy
    Opening http://test.woow.at/awork/oracle/dacf/control/ResTable_de.properties.class no proxy
    Opening http://test.woow.at/awork/borland/jbuilder/addin/VersionedAddin.class no proxy
    java.lang.UnsatisfiedLinkError: enableModeless
    at sun.beans.ole.OleEmbeddedFrame.modalityPushed(Unknown Source)
    at sun.beans.ole.ModalityListenerImpl.modalityPushed(Unknown Source)
    at sun.awt.windows.WToolkit$ModalityListenerList.modalityPushed(Unkown Source)
    at sun.awt.windows.ModalityEvent.dispatch(Unkown Source)
    at sun.awt.windows.WToolkit.notifyModalityChange(Unkown Source)
    at sun.awt.windows.WDialogPeer.show(Unkown Source)
    at sun.awt.Dialog.conditionalShow(Unkown Source)
    at sun.awt.Dialog.show(Unkown Source)
    at oracle.dacf.control.swing.LoginDlg.show(LoginDlg.java:503)
    at oracle.dacf.control.swing.LoginDlg.showDialog(LoginDlg.java:488)
    at package6.Applet1.init(Applet.java:290)
    at sun.applet.AppletPanel.run(Unkown Source)
    at java,lang.Thread.run(Unkown Source)
    any idea, thanx a lot
    Armin

    Armin,
    I haven't seen this one before.
    Is your browser set to run with German locale?
    Here is my standard reply for problems with applet deployment in 3.1. It is probably the case that some classes available in the JDeveloper environment were not deployed to your web server environment.
    Applet Deployment for JDev 3.1
    Deployment issues for client and server:
    1. Make sure you have the JDK 1.2 plugin installed on the client.
    2. If your webserver and database are not on the same machine, you will have to configure your applet
    differently, or install the Net8 Connection Manager. See the Oracle JDBC Developer's Guide for more
    information (exact location of applet info depends on which version of the DB).
    Creating your Applet within JDeveloper:
    1. Create a new workspace.
    2. Create a new Business Components project. You will define your data model and business logic in this
    project. This is effectively your middle tier, but can be deployed to any tier you choose. In this
    project you will use the Business Components wizard to create:
    a. entity objects for each of the tables/views you want to develop against
    b. view objects (and optionally view links, associations) for each of the entity objects or
    combination of entity objects
    c. application module(s) to represent your data model(s)
    3. Save and build your business components project.
    4. Create a new empty project to contain your applet code.
    5. Launch the Infobus DataForm wizard to create your DAC applet. Choose the app module you created in
    step 2 as a data source. (Alternately, you can create the applet from scratch using the controls and
    binding your sessioninfo object to your app module).
    Deployment Steps within JDeveloper:
    1. Deploy your business components project.
    a. decide how you will deploy your app module (local, visibroker, etc.)
    b. if you decide to deploy in local mode, use the Deployment Profile Wizard and choose 'Simple
    Archive', including all of the business components project's XML and .JAVA files in the archive.
    c. if you will deploy to visibroker, see the online help for deploying your business components,
    and see the Release Notes for additional changes you need to make to your applet project.
    2. (if deploying BC4J project in local mode) Create a library using the archive you generated in Step
    1. Add this library to your applet project from the Project Properties Libraries tab.
    3. Clear out a directory on your local machine where the deployment wizard can copy everything you
    need to deploy.
    4. Deploy your applet project.
    a. Run the JDeveloper Deployment Profile Wizard and choose the Web Application to Web Server option
    on Page 1.
    b. On page 2, select all of the .class files in your project that make up the applet.
    c. Select all the libraries listed and shuttle them to the selected list. The contents of these
    libraries will automatically be added to your applet's HTML file during deployment
    d. Give the .jar file a name, and run the deployment to generate that jar file.
    e. select the location of the 'clean' directory you created in step 3.
    Deploying to your WebServer:
    1. Copy everything that the deployment process placed in your 'clean' directory to your WebServer.
    If you deployed your BC4J project locally, you will need to deploy the archive file containing your
    business components to the webserver along with all of the other archives.
    2. If you want to put the dependency archives in a different location from the applet's HTML file
    under the webserver root, then you need to set the CODEBASE tag in the HTML file to the (relative)
    location of the archives.
    Troubleshooting:
    1. Try both Netscape and IE. Different Browsers sometimes give different errors and one might be more
    helpful/indicative of the problem's source.
    2. Use the Java Console to get a more detailed stack trace. For Netscape, choose
    Communicator->Tools->Java Console.
    References w/in Oracle -
    JDBC Developer's Guide
    Net8 Admin Guide
    Referenc es outside Oracle -
    Borland JBuilder doc: http://www.borland.com/techpubs/jbuilder/jbuilder3-s/pg/applets.html
    JavaSoft Plugin Download: http://java.sun.com/products/plugin/
    JavaSoft Applets Resources Page: http://www.javasoft.com/applets/index.html
    null

  • Java.lang.UnsatisfiedLinkError: no ocijdbc8 in java.library.path

    hi,
    i am trying to connect to an oracle 8.1.7 database from my application running on tomcat 4.0.3 / jdk1.4 /windows nt.
    using the thin jdbc-driver (classes12.zip) everything works fine.
    when i try using the oci8-driver, i get an error-message saying:
    java.lang.UnsatisfiedLinkError: no ocijdbc8 in java.library.path
    i have the oracle-client installed on my machine.
    the ocijdbc8.dll can be found in D:\server\oracla81\bin
    the environment-variables PATH, CLASSPATH, LD_LIBRARY_PATH (i'm not sure if this has any meaning on nt) all point to this directory.
    i start tomcat using the following option: -Djava.library.path="D:\server\oracla81\bin"
    my application can see this variable:
    System.out.println("java.library.path: "+System.getProperty("java.library.path"));
    prints out the correct value.
    then i try to load the library by myself:
    try {
    System.loadLibrary("ocijdbc8");
    System.out.println("Successfully Loaded");
    } catch(Exception e) {
    System.out.println("LD_LIBRARY_PATH is not properly set");
    e.printStackTrace();
    everything works fine! the library is loaded!
    finally i try to connect to the database and the application throws the mentioned exception:
    lang.UnsatisfiedLinkError: no ocijdbc8 in java.library.path
         at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1410)
         at java.lang.Runtime.loadLibrary0(Runtime.java:772)
         at java.lang.System.loadLibrary(System.java:832)
         at oracle.jdbc.oci8.OCIDBAccess.logon(OCIDBAccess.java:228)
         at oracle.jdbc.driver.OracleConnection.(OracleConnection.java:249)
         at oracle.jdbc.driver.OracleDriver.getConnectionInstance(OracleDriver.java:365)
         at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:260)
    any help would be appreciated.
    thanx in advance,
    frank.
    [email protected]

    It is probably JDK 1.4 that causes the problem. I was able to get strange errors with that version of the JDK with code that worked fine using 1.31.

  • Jav.lang.UnsatisfiedLinkError: rwinit from oracle.reports.rwcgi.WServlet

    How do I get oracle.reports.rwcgi.RWServlet to run in Tomcat 3.2 in Solaris 2.6?
    I have made sure I included <6i_home>/lib:<6i_home>/bin:<6i_home>repots60/lib in my PATH and LD_LIBRARY_PATH before I started Tomcat. But when I call the servlet from the browser, I got this error on my browser screen:
    java.lang.UnsatisfiedLinkError: rwinit
    at oracle.reports.rwcgi.RWServlet.init(Compiled Code)
    (more errer messages...)
    What did I do wrong?
    Thanks,
    Joe
    ...

    How do I get oracle.reports.rwcgi.RWServlet to run in Tomcat 3.2 in Solaris 2.6?
    I have made sure I included <6i_home>/lib:<6i_home>/bin:<6i_home>repots60/lib in my PATH and LD_LIBRARY_PATH before I started Tomcat. But when I call the servlet from the browser, I got this error on my browser screen:
    java.lang.UnsatisfiedLinkError: rwinit
    at oracle.reports.rwcgi.RWServlet.init(Compiled Code)
    (more errer messages...)
    What did I do wrong?
    Thanks,
    Joe
    ...

  • Java.lang.UnsatisfiedLinkError: no ocijdbc8 in shared library path

    Hello
    i am getting this unsatisfied error whenever i use servlet & in my servlet i am using JDBC for connecting to Oracle.
    i need to know the solution for this please do let me know . Also do i need to know the JDBC re-alm set-up in Tomcat server.
    java.lang.UnsatisfiedLinkError: no ocijdbc8 in shared library path
    at java.lang.Runtime.loadLibrary(Runtime.java)
    at java.lang.System.loadLibrary(System.java)
    at oracle.jdbc.oci8.OCIDBAccess.logon(OCIDBAccess.java)
    at oracle.jdbc.driver.OracleConnection.(OracleConnection.java)
    at oracle.jdbc.driver.OracleDriver.getConnectionInstance(OracleDriver.java)
    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java)
    at java.sql.DriverManager.getConnection(DriverManager.java:83)
    at java.sql.DriverManager.getConnection(DriverManager.java:126)
    at sdsi.sdsi.doGet(sdsi.java:29)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at org.apache.tomcat.core.ServletWrapper.doService(ServletWrapper.java:405)
    at org.apache.tomcat.core.Handler.service(Handler.java:287)
    at org.apache.tomcat.core.ServletWrapper.service(ServletWrapper.java:372)
    at org.apache.tomcat.core.ContextManager.internalService(ContextManager.java:812)
    at org.apache.tomcat.core.ContextManager.service(ContextManager.java:758)
    at org.apache.tomcat.service.http.HttpConnectionHandler.processConnection(HttpConnectionHandler.java:213)
    at org.apache.tomcat.service.TcpWorkerThread.runIt(PoolTcpEndpoint.java:416)
    at org.apache.tomcat.util.ThreadPool$ControlRunnable.run(ThreadPool.java:501)
    at java.lang.Thread.run(Thread.java)

    Make sure the oracle library ($ORACLE_HOME/lib) is included in the LD_LIBRARY_PATH.
    Or, you can use JDBC thin driver instead of OCI driver.

  • Java.lang.UnsatisfiedLinkError: Can't load library: /

    Hello
    I downloaded the 32 bit JRE 5 for powerpc evaluation copy. When i try to execute the sample awt program using java.awt.headless=false. I'm getting following error.
    java -Djava.awt.headless=false AWTExample
    Exception in thread "main" java.lang.UnsatisfiedLinkError: Can't load library: /
    mnt/usb/jre1.5.0_10/lib/ppc/xawt/libmawt.so
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1650)
    at java.lang.Runtime.load0(Runtime.java:769)
    at java.lang.System.load(System.java:968)
    at java.lang.ClassLoader$NativeLibrary.load(Native Method)
    at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1751)
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1668)
    at java.lang.Runtime.loadLibrary0(Runtime.java:822)
    at java.lang.System.loadLibrary(System.java:993)
    at sun.security.action.LoadLibraryAction.run(LoadLibraryAction.java:50)
    at java.security.AccessController.doPrivileged(Native Method)
    at sun.awt.NativeLibLoader.loadLibraries(NativeLibLoader.java:38)
    at sun.awt.DebugHelper.<clinit>(DebugHelper.java:29)
    at java.awt.Component.<clinit>(Component.java:545)
    please letme know where can i get ppc/xawt/libmawt.so.
    Is there any alternate solution for it. Please help me in this regard.
    Thanks and Regards
    Murali Krishna

    Hi all,
    I give you the clear details about the issue what i am currently facing,
    1. I installed the 11g (11.2.0) database alone(No EBS) in my local vmware machine.
    2. Created my ORACLE_HOME under /u01/oracle/prod/tech_st/product/11.2.0/db_1 directory after that i tried to change my home location from /u01/oracle/prod/tech_st/product/11.2.0/db_1 location to /u01/oracle/db/tech_st/product/11.2.0/db_1 location, like created /u01/oracle/db directory and moved files from /u01/oracle/prod location.
    3. I changed my bash_profile and exported home with the modified location also deregistered an old home and registered the new home.
    4. When i am issuing echo $ORACLE_HOME it is showing the current home location and ORACLE_SID is same what i created before.
    5. But when i am trying to create one more db using DBCA utility it is through the above error.
    Please suggest me is it possible to change the location after db creation or any extra steps i have to do for this issue.
    Thanks.

  • Exception of type java.lang.UnsatisfiedLinkError was thrown Anyone ?

    We are getting this exception when trying to run a very basic aspx. This project works across several other servers, after bringing a new server online, we are finding we get this exception. Below is the complete response from tcptrace.
    HTTP/1.1 500 Internal Server ErrorServer: Microsoft-IIS/5.0Date: Tue, 24 Feb 2004 16:28:31 GMTX-Powered-By: ASP.NETX-AspNet-Version: 1.1.4322Cache-Control: privateContent-Type: text/html; charset=utf-8Content-Length: 5522
    <html> <head> <title>Exception of type java.lang.UnsatisfiedLinkError was thrown.</title> <style> body {font-family:"Verdana";font-weight:normal;font-size: .7em;color:black;} p {font-family:"Verdana";font-weight:normal;color:black;margin-top: -5px} b {font-family:"Verdana";font-weight:bold;color:black;margin-top: -5px} H1 { font-family:"Verdana";font-weight:normal;font-size:18pt;color:red } H2 { font-family:"Verdana";font-weight:normal;font-size:14pt;color:maroon } pre {font-family:"Lucida Console";font-size: .9em} .marker {font-weight: bold; color: black;text-decoration: none;} .version {color: gray;} .error {margin-bottom: 10px;} .expandable { text-decoration:underline; font-weight:bold; color:navy; cursor:hand; } </style> </head>
    <body bgcolor="white">
    <span><H1>Server Error in '/PPAApps' Application.<hr width=100% size=1 color=silver></H1>
    <h2> <i>Exception of type java.lang.UnsatisfiedLinkError was thrown.</i> </h2></span>
    <font face="Arial, Helvetica, Geneva, SunSans-Regular, sans-serif ">
    <b> Description: </b>An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    <br><br>
    <b> Exception Details: </b>java.lang.UnsatisfiedLinkError: Exception of type java.lang.UnsatisfiedLinkError was thrown.<br><br>
    <b>Source Error:</b> <br><br>
    <table width=100% bgcolor="#ffffcc"> <tr> <td> <code>
    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.</code>
    </td> </tr> </table>
    <br>
    <b>Stack Trace:</b> <br><br>
    <table width=100% bgcolor="#ffffcc"> <tr> <td> <code><pre>
    [UnsatisfiedLinkError: Exception of type java.lang.UnsatisfiedLinkError was thrown.] java.lang.ExceptionInInitializerError.checkAndThrowException(Throwable thrown) +59 java.util.Locale..cctor() +1678
    [TypeInitializationException: The type initializer for "java.util.Locale" threw an exception.] java.lang.Float..ctor(String s) +214 com.plumtree.remote.portlet.xp.XPSettingsManager.IsCSPVersionAtLeast(Double version) com.plumtree.remote.portlet.xp.XPSettingsManager..ctor(IXPRequest request, IXPResponse response) com.plumtree.remote.portlet.xp.XPSettingsFactory.getXPSettingsManager(IXPRequest request, IXPResponse response) com.plumtree.remote.portlet.xp.XPPortletContext..ctor(IXPRequest request, IXPResponse response) com.plumtree.remote.portlet.xp.XPPortletContextFactory.createPortletContext(IXPRequest req, IXPResponse resp) Plumtree.Remote.Portlet.PortletContextFactory.CreatePortletContext(HttpRequest req, HttpResponse resp) Com.Plumtree.Remote.Transformer.Condition.GatewayedStandardCondition.UseFilter(HttpContext ctx) Com.Plumtree.Remote.Transformer.FilterManager.UpdateFilter(HttpContext ctx) Com.Plumtree.Remote.Transformer.PTTransformer.BeginRequestHandler(Object sender, EventArgs e) System.Web.SyncEventExecutionStep.System.Web.HttpApplication+IExecutionStep.Execute() +60 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +87</pre></code>
    </td> </tr> </table>
    <br>
    <hr width=100% size=1 color=silver>
    <b>Version Information:</b> Microsoft .NET Framework Version:1.1.4322.573; ASP.NET Version:1.1.4322.573
    </font>
    </body></html><!-- [UnsatisfiedLinkError]: Exception of type java.lang.UnsatisfiedLinkError was thrown. at java.lang.ExceptionInInitializerError.checkAndThrowException(Throwable thrown) at java.util.Locale..cctor()[TypeInitializationException]: The type initializer for "java.util.Locale" threw an exception. at java.lang.Float..ctor(String s) at com.plumtree.remote.portlet.xp.XPSettingsManager.IsCSPVersionAtLeast(Double version) at com.plumtree.remote.portlet.xp.XPSettingsManager..ctor(IXPRequest request, IXPResponse response) at com.plumtree.remote.portlet.xp.XPSettingsFactory.getXPSettingsManager(IXPRequest request, IXPResponse response) at com.plumtree.remote.portlet.xp.XPPortletContext..ctor(IXPRequest request, IXPResponse response) at com.plumtree.remote.portlet.xp.XPPortletContextFactory.createPortletContext(IXPRequest req, IXPResponse resp) at Plumtree.Remote.Portlet.PortletContextFactory.CreatePortletContext(HttpRequest req, HttpResponse resp) at Com.Plumtree.Remote.Transformer.Condition.GatewayedStandardCondition.UseFilter(HttpContext ctx) at Com.Plumtree.Remote.Transformer.FilterManager.UpdateFilter(HttpContext ctx) at Com.Plumtree.Remote.Transformer.PTTransformer.BeginRequestHandler(Object sender, EventArgs e) at System.Web.SyncEventExecutionStep.System.Web.HttpApplication+IExecutionStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)-->HTTP/1.1 500 Internal Server ErrorServer: Microsoft-IIS/5.0Date: Tue, 24 Feb 2004 16:29:06 GMTX-Powered-By: ASP.NETX-AspNet-Version: 1.1.4322Cache-Control: privateContent-Type: text/html; charset=utf-8Content-Length: 5522
    <html> <head> <title>Exception of type java.lang.UnsatisfiedLinkError was thrown.</title> <style> body {font-family:"Verdana";font-weight:normal;font-size: .7em;color:black;} p {font-family:"Verdana";font-weight:normal;color:black;margin-top: -5px} b {font-family:"Verdana";font-weight:bold;color:black;margin-top: -5px} H1 { font-family:"Verdana";font-weight:normal;font-size:18pt;color:red } H2 { font-family:"Verdana";font-weight:normal;font-size:14pt;color:maroon } pre {font-family:"Lucida Console";font-size: .9em} .marker {font-weight: bold; color: black;text-decoration: none;} .version {color: gray;} .error {margin-bottom: 10px;} .expandable { text-decoration:underline; font-weight:bold; color:navy; cursor:hand; } </style> </head>
    <body bgcolor="white">
    <span><H1>Server Error in '/PPAApps' Application.<hr width=100% size=1 color=silver></H1>
    <h2> <i>Exception of type java.lang.UnsatisfiedLinkError was thrown.</i> </h2></span>
    <font face="Arial, Helvetica, Geneva, SunSans-Regular, sans-serif ">
    <b> Description: </b>An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    <br><br>
    <b> Exception Details: </b>java.lang.UnsatisfiedLinkError: Exception of type java.lang.UnsatisfiedLinkError was thrown.<br><br>
    <b>Source Error:</b> <br><br>
    <table width=100% bgcolor="#ffffcc"> <tr> <td> <code>

    This is the response I got from support:
    This is bug 22205 and will be fixed in the release of the Exchange Groupware Portlet Suite 3.0.4 at the end of April. The workaround in the interim is to copy the D:\Program Files\plumtree\jre folder from the installation CD (or another working portal server) onto the problem server. Please let me know if this resolves the issue for you. Neal Rapoporthttp://www.portalconsultant.com

  • 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.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.UnsatisfiedLinkError in Eclipse 3.2.1

    Deal all,
    sorry for the basic question, i met the following error when i try to use swing through swt , "Exception in thread "main" java.lang.UnsatisfiedLinkError: no swt-win32-3235 in java.library.path"
    and i already add "org.eclipse.swt.win32.win32.x86_3.2.1.v3225.jar" in "Java build path"
    so how can i handle this ?
    thank you in advance!

    I had same problem with using jdeveloper 10.1.3.1.0. I extracted the reported dll files from org.eclipse.swt.win32.win32.x86_3.2.1.v3235.jar and put the them in ..\jdk\bin that my jdeveloper runs and the problem got resolved
    Wole

  • Jar file issue. EXCEPTION: java.lang.UnsatisfiedLinkError

    Hey all,
    i'm writing an application that connects to Oracles SCM. I use a lot of the oracle SCM library. Anyway, my application running in oracles jDeveloper works just fine. However when i deploy it to an executable jar file i get the above exception. In the deployment settings i have tried both using the dependency analyzer and including all content. I have selected all libraries that are used in running it within jdeveloper for the deployment. I have posted to the SCM forumn but noone there has any ideas so just wondering if its a problem with jdeveloper or if its just something stupid i've done.
    find the below the full exception im getting when i run the executable jar file. i'd appreciate any ideas/suggestions anyone may have
    cheers
    paul
    Exception occurred during event dispatching:
    java.lang.UnsatisfiedLinkError: TnsAliasToAddress
    at oracle.repos.helpers.environment.OSEnv.TnsAliasToAddress(Native Method)
    at oracle.repos.services.connection.RepositoryConnectDetails.parseConnect(RepositoryConnectDetails.java:365)
    at oracle.repos.services.connection.RepositoryConnectDetails.<init>(RepositoryConnectDetails.java:74)
    at oracle.repos.services.connection.RepositoryConnection.<init>(RepositoryConnection.java:368)
    at ess.ant.scm.ValidateUser.validate(ValidateUser.java:44)
    at ess.ant.scm.ConnectionFrame.connect_actionPerformed(ConnectionFrame.java:175)
    at ess.ant.scm.ConnectionFrame$1.actionPerformed(ConnectionFrame.java:89)
    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1450)
    at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(AbstractButton.java:1504)
    at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:378)
    at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:250)
    at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:216)
    at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:230)
    at java.awt.Component.processMouseEvent(Component.java:3715)
    at java.awt.Component.processEvent(Component.java:3544)
    at java.awt.Container.processEvent(Container.java:1164)
    at java.awt.Component.dispatchEventImpl(Component.java:2593)
    at java.awt.Container.dispatchEventImpl(Container.java:1213)
    at java.awt.Component.dispatchEvent(Component.java:2497)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:2451)
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:2216)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:2125)
    at java.awt.Container.dispatchEventImpl(Container.java:1200)
    at java.awt.Window.dispatchEventImpl(Window.java:926)
    at java.awt.Component.dispatchEvent(Component.java:2497)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:339)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:131)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:98)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:85)

    This tutorial page for JNI API describes how and where Java looks for the dynamic libraries:
    http://java.sun.com/docs/books/tutorial/native1.1/stepbystep/_library.html
    And this is the home page of Java Native Interface (JNI) API:
    http://java.sun.com/j2se/1.4/docs/guide/jni/index.html
    I have tried putting my executable jar in the same folder as
    this dll and including the dll in my path but both to no avail.Again: you mix binary code and JVM byte code. They are loaded
    differently and located differently. classpath means nothing for the binary code.
    "The Win32 VM uses a search path that includes the current directory for the process or one of the directories listed in the PATH environment variable"
    The DLL may be either in the folder where the application (the JRE/JDK) runs, that is where java.exe is, or some other directory on the system PATH (according to the PATH system variable).

  • Java.lang.UnsatisfiedLinkError: com/edifecs/xengine/xeobjects/XEHelper.cre

    Protocol Name : EDI_X12
    Document Verison : V4010
    Document Type : 850
    Document Definition as : EDI_X12-V4010-850-850def
    Listening Channel :
    Protocol : Generic File 1.0
    Tansport Protocol Parameter :
    Folder Name :/u01/ftp_root/Inbound (A folder on Server)
    File Format : %FROM_PARTY%_%DOCTYPE_NAME%_%DOCTYPE_REVISION%.dat
    Preserve File Name : Enabled(Checked)
    Host Trading Partner :
    Profile :Vallues Given for following Identifier Types
    Identifier Type : EDI Group ID , EDI Interchange ID , EDI Group ID Qualifier,EDI Interchange ID Qualifier
    Document : EDI_X12-V4010-850-850def (Receiver = Checked)
    It's Receiver of the Document.
    Host Channel :
    Protocol : Generic File 1.0
    Tansport Protocol Parameter :
    Folder Name :/u01/ftp_root/Outbound (A folder on Server)
    Remote Trading Partner:
    Profile :Vallues Given for following Identifier Types
    Identifier Type : EDI Group ID , EDI Interchange ID , EDI Group ID Qualifier,EDI Interchange ID Qualifier
    Document : EDI_X12-V4010-850-850def (Sender= Checked)
    It's Sender of the Document.
    Agreement Direction :
    From Remote Trading partner --> To Host Trading Partner
    Agreement Parameters : Only Translate = Checked.
    Identifier are selected and channels specifies in the Agreement as required.
    Note :
    1. .ecs , .xsd and .dat files were generated by B2B Doc Builder
    2. File saved in format as :
    %FROM_PARTY%_%DOCTYPE_NAME%_%DOCTYPE_REVISION%.dat
    Following are the installation specifications :-
    1. OS Linux 64 bit with JRocket 64 bit. (Yes Verified)
    2. Environment :Single (Not-Clustered) (Yes Verified)
    3. XEngine Installed and Installation Tested. (Yes Verified)
    4. LD_LIBRARY_PATH set (Yes Verified)
    5. Other Xengine Environment Variables are set. (Yes Verified)
    Problem I am facing are:
    1. While creating agreement following parameter need to be "checked" if we wish to get a translation of document from EDI-->XML
    "Agreement Parameters : Only Translate = Checked.
    If I don't check Translation,means if I don't enable translation.It works fine.
    File is picked from Source location and Dropped into Destination Via B2B
    However if I check(Enable) Translation it's giving Processing Error java.lang.UnsatisfiedLinkError"
    Server.log says :
    [d03-c02-s01] [ERROR] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@23e23fcf] [userId: <anonymous>] [ecid: 11d1def534ea1be0:507ef52a:12f581580da:-8000-0000000000059a10,0] [APP: soa-infra] java.lang.UnsatisfiedLinkError: com/edifecs/xengine/xeobjects/XEHelper.createN2XNative()Lcom/edifecs/xengine/xeobjects/XEDataProc;[[
         at com.edifecs.xengine.xeobjects.XEHelper.createN2X(Unknown Source)
         at oracle.tip.b2b.document.edi.EDIDocumentPlugin.processIncomingDocument(EDIDocumentPlugin.java:1113)
         at oracle.tip.b2b.engine.Engine.processIncomingMessageImpl(Engine.java:2488)
         at oracle.tip.b2b.engine.Engine.processIncomingMessage(Engine.java:1638)
         at oracle.tip.b2b.engine.Engine.incomingContinueProcess(Engine.java:3978)
         at oracle.tip.b2b.engine.Engine.handleMessageEvent(Engine.java:3654)
         at oracle.tip.b2b.engine.Engine.processEvents(Engine.java:3127)
         at oracle.tip.b2b.engine.ThreadWorkExecutor.processEvent(ThreadWorkExecutor.java:619)
         at oracle.tip.b2b.engine.ThreadWorkExecutor.run(ThreadWorkExecutor.java:220)
         at oracle.integration.platform.blocks.executor.WorkManagerExecutor$1.run(WorkManagerExecutor.java:120)
         at weblogic.work.j2ee.J2EEWorkManager$WorkWithListener.run(J2EEWorkManager.java:183)
         at weblogic.work.DaemonWorkThread.run(DaemonWorkThread.java:30)
    java.lang.UnsatisfiedLinkError: com/edifecs/xengine/xeobjects/XEHelper.createN2XNative()Lcom/edifecs/xengine/xeobjects/XEDataProc;
         at com.edifecs.xengine.xeobjects.XEHelper.createN2X(Unknown Source)
         at oracle.tip.b2b.document.edi.EDIDocumentPlugin.processIncomingDocument(EDIDocumentPlugin.java:1113)
         at oracle.tip.b2b.engine.Engine.processIncomingMessageImpl(Engine.java:2488)
         at oracle.tip.b2b.engine.Engine.processIncomingMessage(Engine.java:1638)
         at oracle.tip.b2b.engine.Engine.incomingContinueProcess(Engine.java:3978)
         at oracle.tip.b2b.engine.Engine.handleMessageEvent(Engine.java:3654)
         at oracle.tip.b2b.engine.Engine.processEvents(Engine.java:3127)
         at oracle.tip.b2b.engine.ThreadWorkExecutor.processEvent(ThreadWorkExecutor.java:619)
         at oracle.tip.b2b.engine.ThreadWorkExecutor.run(ThreadWorkExecutor.java:220)
         at oracle.integration.platform.blocks.executor.WorkManagerExecutor$1.run(WorkManagerExecutor.java:120)
         at weblogic.work.j2ee.J2EEWorkManager$WorkWithListener.run(J2EEWorkManager.java:183)
         at weblogic.work.DaemonWorkThread.run(DaemonWorkThread.java:30)
    [2011-04-18T09:46:36.241+02:00] [d03-c02-s01] [ERROR] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@23e23fcf] [userId: <anonymous>] [ecid: 11d1def534ea1be0:507ef52a:12f581580da:-8000-0000000000059a10,0] [APP: soa-infra] java.lang.IndexOutOfBoundsException: Index: 0, Size: 0[[
         at java.util.ArrayList.RangeCheck(ArrayList.java:547)
         at java.util.ArrayList.get(ArrayList.java:322)
         at oracle.tip.b2b.engine.Engine.processIncomingMessageImpl(Engine.java:2894)
         at oracle.tip.b2b.engine.Engine.processIncomingMessage(Engine.java:1638)
         at oracle.tip.b2b.engine.Engine.incomingContinueProcess(Engine.java:3978)
         at oracle.tip.b2b.engine.Engine.handleMessageEvent(Engine.java:3654)
         at oracle.tip.b2b.engine.Engine.processEvents(Engine.java:3127)
         at oracle.tip.b2b.engine.ThreadWorkExecutor.processEvent(ThreadWorkExecutor.java:619)
         at oracle.tip.b2b.engine.ThreadWorkExecutor.run(ThreadWorkExecutor.java:220)
         at oracle.integration.platform.blocks.executor.WorkManagerExecutor$1.run(WorkManagerExecutor.java:120)
         at weblogic.work.j2ee.J2EEWorkManager$WorkWithListener.run(J2EEWorkManager.java:183)
         at weblogic.work.DaemonWorkThread.run(DaemonWorkThread.java:30)
    Suggestions/Help/Guidence are welcome.
    Am struck on this ..
    Thanks in advance to B2B community for the help..

    Hi Anuj,
    I spoke to Oracle and they found that we have JRocket 64 bit installed.
    However they recommend JDK 64 bit for the Development Environment.
    And we are gonna do a Fresh SOA installation in a day.
    SOA Verison is : 11.1.1.4
    I hope this may help us.
    Thanks Anuj for continous help.
    Thanks
    Vivek

  • Exception in thread "main" java.lang.UnsatisfiedLinkError: - fresh Install

    Pls can someone help me out. I have a similar problem to the one raised in this thread.
    I want to install 10g Release 2 on a RHEL AS4 Production IBM server. I've followed the installation guide to the letter!
    I keep getting this error:
    [oracle@pencomlx2 database]$ ./runInstaller
    Starting Oracle Universal Installer...
    Checking installer requirements...
    Checking operating system version: must be redhat-3, SuSE-9, redhat-4, UnitedLinux-1.0, asianux-1 or asianux-2
    Passed
    All installer requirements met.
    Preparing to launch Oracle Universal Installer from /tmp/OraInstall2007-07-08_04-07-07PM. Please wait ...[oracle@pencomlx2 database]$ Exception in thread "main" java.lang.UnsatisfiedLinkError: /tmp/OraInstall2007-07-08_04-07-07PM/jre/1.4.2/lib/i386/libawt.so: libXp.so.6: cannot open shared object file: No such file or directory
    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 sun.security.action.LoadLibraryAction.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at sun.awt.NativeLibLoader.loadLibraries(Unknown Source)
    at sun.awt.DebugHelper.<clinit>(Unknown Source)
    at java.awt.Component.<clinit>(Unknown Source)
    Pls can someone help out b4 i loose my mind!
    Kwex.

    This thread has a similar issue as the one addressed here: Re: Installation on Unbreakable Linux.
    ~ Madrid.

Maybe you are looking for