JavaMail application aborts JVM on iPlanet

I am running a JavaMail application
on iPlanet Web Server 4.1 SP9 on Solaris 2.8.
The iPlanet Webserver uses JDK 1.2.2_05.
(The JDK required patches are installed.)
The application uses JavaMail 1.3.1 and
JAF 1.0.2 from Sun. The IMAP4 server is
accessed using the service provider in the
JavaMail package.
The application calls repeatedly
BodyPart.getContent()
until the returned object is of type InputStream.
When this input stream is read, the JVM aborts.
I turned the JavaMail debug on using Session.setDebug().
This shows, that part of the body of the mail is
fetched before the JVM aborts.
The application log including JavaMail:
2003-09-17 22:39:21,860 [Thread-9] DEBUG imap4.MsgBody - int readLen = -1;
2003-09-17 22:39:21,860 [Thread-9] DEBUG imap4.MsgBody - while ((readLen = body.
read()) != -1) {
2003-09-17 22:39:21,863 [Thread-9] DEBUG JAVAMAIL - A29 FETCH 11 (BODY[1]<0.16384>)
2003-09-17 22:39:21,891 [Thread-9] DEBUG JAVAMAIL - * 11 FETCH (BODY[1]<0> {16384}
//8NAAAAAAAAAAAAAAAAAJ48kiT05/7/Hv+eP26nbP3+/54kkusSP/7/7v+e//z78iecP/Ln
nud85+7HkjySPP7/3jz+/57nHufy5/T/4uf++J7/Gt+S654olOee5/7k/tue+/77bvf+JP78
ov/y/x5FkvyiP/4/Ht+cJ/Lf8iT+5PL/kieSJGIn/v7+2J4nlD+S5J7nnt/+/2zfnP9+/aQk
8vyu//7f/v/sJO4k8iT+/JL/Hv/+5+7kEiWe/P4//Nz+//78ouT+KJ4k8v/85+zabvvy//4k
ouSS5PLn8vv8+/rfrv/+55JH4j9+P/7f8t/+/H7/kvzyPPInfuf0//7/kj/++/77/v+ePPI/
/vyeJ/7/kt/8P/7//v+ePPInnj/+//4/7vvyx/7/nvyeJPIk/v+e5P7n/ufu//zb/v/+//Ik
kify/J7k9Pz+/27/8v/+//7/7uT+PP4k8if+3/7/nj+SPPInnv/+//z/fv/+5/4k/v/+//L/
/vz8//4nkv/yJP7//v/+//7//v/+//7//v/+P/I/9D/yJ/L//t+e+/4/kiTy/+7//uf+/54/
kiRyJZ7//v/8//7/kvz+J/4nnvz+//7/7v/8/P48kkSeJJI//v/s//zf/vz+P/LnkjwSJ/7/
nv/+//7/fv/+/x4l8iSeJ/L/fv9s12778j/yS5Ikniee337b/tf85/78niTyJ/Lk/v9s5+zn
/v+S/JI//ice//7//v/+257//v+SJ5L87ueS55L//sd++/7n/vz+J5I/nv/iJ/7//vwe//78
/v+eP3L/8j+e/J7kkv/y//7//v/+//7kkuSe//7//v9uO/7/niSSJ/In8j/++/7/7vv++54/
niSS5/L//vv+/57n/v/+JP4n8v/+//7//v/+//7//v/+//7//j/+/JLkkv/yP/7//v/+//4k
nuSS3/7f/Nz+/5Ln8v/+//7f/v/+/5L/njyS557nfv/y/P4k8ify//7n/v/+//7/nvySJP4k
nvx+/+7//tz+PxJf8ufy//7//v/+/5IkkiTyJP7//v/+3/7f/v/+/377kv+UJJIkkuf+/37b
7Pt82+4nEiWSJJI/8sfs1lz7/NuSPJIo8kty5fzf6rta33z7nvyURJJHcj18/+767Lvc29JY
KifyKyT7ktvy9xrf7j/8/27nLPtSJS47/uvyVxzf9Pucv+zfbP/qOPr/9ESuJ3T9euf++2zH
euf++xLbfMvkWJ7kniQc23Lb8jtq/+Lf/Cfex+7nrlySJPLk7Lz+9/zfEt/+/P4/3vveOJzk
ZCV+5/7nfvv8/+7/+v98xuI7/PiSWBI9/jx+9ew7Glv++3w6eM3s+O78nFz0WBz7/rCeP+5f
OvN2+/6kbDMe/bI/kt8ul/
The iPlanet error log shows, that at this moment the JVM is restarted:
[17/Sep/2003:22:39:21] info ( 2583): Internal Info: loading servlet /Creator/callflow/htmlsara/dbg_play_msg_body.jsp
[17/Sep/2003:22:39:21] info ( 2583): Aborting JVM
[17/Sep/2003:22:39:21] info ( 2583): Exiting JVM due to: jvm_abort () and jvm.ex
itOnAbort > 0
[17/Sep/2003:22:39:21] info ( 2583): JVM exit statistics: AttachedThreads/Max=1/
1, ActiveThreads/Max=1/1
[17/Sep/2003:22:39:22] warning ( 2585): Unable to initialize NLS property bundle
(res/cjava)
[17/Sep/2003:22:39:22] catastrophe ( 2585): Unable to create/cleanup persistent
session data cache
[17/Sep/2003:22:39:23] warning ( 2585): sjava resource bundle not found - using
default: java.util.MissingResourceException: Can't find resource for base name r
es.sjava, locale en
[17/Sep/2003:22:39:23] info ( 2585): Loading Simple Session Manager by default.
Specify MMapSessionManager in servlets.properties to load persistent session man
ager
[17/Sep/2003:22:39:23] info ( 2585): SimpleSessionManager: Default values for ma
ximum number of sessions is 1000 with a time out value of 1800 seconds
The only public interface of the application is a bean. When this bean is
used via a main method, then everything works. The same JVM is used
to run the application from the command line.
Can you give me some suggestion, how the problem can be resolved.
Thanks

In the mean time I found a solution to the problem.
After reading the JavaMail forum, FAQ, Notes, and
other resources it became obvious, that
large attachments exhaust JVM memory.
I minimized the memory usage of the JavaMail
and the application, that uses the JavaMail as
follows.
I decreased the fetchsize of the IMAP4 client
by setting the mail.imap.fetchsize properties to
64 bytes.
I do not buffer the InputStream returned by the
Part.getContent() method.
I decreased the buffer size used in the statement
istream.read(buf) to 128.
The istream is the InputStream returned by the
Part.getContent.
All this changes led to a JavaMail debug log, that
showed, that JavaMail used the memory efficiently.
JavaMail only read as many bytes as it was
necessary to fiil the buf buffer, then I could save
the bytes, and read the next chunk of the body.
The price of the solution is, that the decreased memory usage resulted in a much slower system.

Similar Messages

  • Iplanet error: Aborting JVM

    Hi
    We have problem with iplanet IWS41_SP12 ( SunOS 5.6 Generic_105181-34) and java version 1.3.1
    The web server generates a "An unexpected exception has been detected in native code outside the VM" and restarts
    The problem is in the call to
    com.netscape.server.http.servlet.NSServletRequest.getParameter
    Any idea?
    Thanks in advance

    I'm having this same problem on HP-UX.
    Has anyone solved it?
    "Guna" <[email protected]> wrote in message
    news:9mlo8n$[email protected]..
    >
    Hi,
    We have a setup like this :
    iPlanet 4.1 sp7 on Sun Solaris 7
    All required patches of Solaris applied.
    SSL enabled with Server side digital certificate
    Rainbow CryptoSwift Card (An Encryption Accelerator Card )
    Everything works fine except these lines in the Error log :
    Aborting JVM
    Exiting JVM due to : jvm_abort() and jvm.exitOnAbort > 0
    JVM exit statistics : AttachedThreads/Max = 0/1, ActiveThreads/Max = 0/1
    And the following lines in the /var/adm/messages file :
    webservername last messages repeated 5 times
    webservername uxwdog [231] : server terminated [signal 9] : watchdog is
    restarting it
    Any help will be highly appreciated.
    TIA
    Sarath

  • SUN JES 8.1 Q2UR2: Intermittently application server jvm crashed.

    Application server jvm intermittently crashed but due to the feature in SUN JES 8.1 ur2 the application server will auto restarts the service. Most of the JVM crashes were due to memory corruption.
    The following are SUN findings:
    1)     Multithreading issue that causes 2 threads writing on the same memory block
    2)     Based on dtrace, it indicated that there was a race condition happens but the jvm doesn�t crash during the occurrence.
    Questions:
    1) Is it possible that I can use dtrace to monitor the memory block or to find out the root cause?
    System information:
    Oracle:
    DriverVersion: [10.2.0.1.0]
    DriverMajorVersion: [10]
    DriverMinorVersion: [2]
    DriverName: [Oracle JDBC driver]
    URL: [jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS_LIST= (ADDRESS=(PROTOCOL = TCP) (HOST = XXXXXX) (PORT = 1524)) (ADDRESS=(PROTOCOL = TCP) (HOST = XXXXXX) (PORT = 1524))) (CONNECT_DATA = (SID = CP_P)) (source_route=yes))]
    UserName: [CP_P1]
    Database Product Name: [Oracle]
    Database Product Version: [Oracle9i Enterprise Edition Release 9.2.0.6.0 - 64bit Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.6.0 - Production]
    Database Product Major: [9]
    Database Product Minor: [2]
    Drivers: Type 4
    JDK
    JDBC Major: [10]
    JDBC Minor: [2]
    The JDK version is 1.5.0_02
    SUN JES Application Server
    Sun Java System Application Server Enterprise Edition 8.1_02 running under solaris 10

    Most of the
    JVM crashes were due to memory corruption.
    And how do you know that?
    csgan97: Based on sun support input where its due to either trying to read or write to a memory (pblock) that causes the crash.
    could identify as a pblock issue
    ----------------- lwp# 102 / thread# 102 -------------------- fef40f90 lwpkill (6, 0, fef24a98, ffffffff, fef68284, 6) + 8
    feebff98 abort (4a600, 1, febbeaac, a83f0, fef6b298, 0) + 110
    febb9a9c __1cCosFabort6Fi_v_ (1, 4e10, 10c5b4, 1cb, fecc6000, 4c00) + 58 fec325a0 ???????? (0, fece3ee0, 4000, febbd19c, fec37eee, febbd19c) + 78b5c
    fe9ff2d8 JVM_handle_solaris_signal (b, 5931fa70, 5931f7b8, 5000, 4,
    184c128) +
    9e8
    fef3fec8 __sighndlr (b, 5931fa70, 5931f7b8, fe9fe8d0, 0, 1) + c
    fef34ff4 call_user_handler (b, ffbffeff, c, 0, 5bb37c00, 5931f7b8) + 3b8 5f2b08fc pblock_kpinsert (4efa78, 1246c28, 1246520, 2c00, 7398ae8,
    2e64) + 17c
    5f2b0b28 pblock_kvinsert (4efa78, 1246900, 12, 1246520, ff00, 80808080)
    + 108
    5f2d5938 INTservact_objset_uri2path (1237c80, 1237cf8, e436b0, 30f4, 680ac6a8,
    5f3e5f54) + e4
    5f2d77a8 INTservact_handle_processed (1237c80, 1237cf8, 1237c80, 1237cf8, 680ea948, 10ddda0) + 4c 5f31a0ec __1cLHttpRequestUUnacceleratedRespond6Mpc_v_ (1237be0, 5f3ed614, 3114, 50, 1237cf8, 1237c80) + 3c8 5f3197dc __1cLHttpRequestNHandleRequest6MpnGnetbuf__i_ (1237be0, 12442d8, 1246430, 1246410, 1000, 1244338) + 62c
    5f317bc4 __1cNDaemonSessionDrun6M_v_ (1234430, 1000, 5f3f3254, 0, 0,
    5f3f320c)
    + 17c
    627e6dbc ThreadMain (1234430, 1240848, 3, 0, 1, 0) + 24
    680d0028 ptroot (1240848, 59320000, 0, 0, 40000, 680e8d70) + d0 fef3fd9c lwpstart (0, 0, 0, 0, 0, 0)
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # SIGSEGV (0xb) at pc=0x5f2b08fc, pid=16489, tid=102 # # Java VM: Java HotSpot(TM) Client VM (1.5.0_02-b09 mixed mode) # Problematic frame:
    # C [libns-httpd40.so+0x308fc] pblock_kpinsert+0x17c #
    The following are SUN findings:Meaning Sun (the company) and not you or someone else determined this?
    csgan97: From Sun support engineer
    1) Multithreading issue that causes 2 threads writing
    on the same memory blockSo? That might indicate a bug in your code. By itself it doesn't mean that it caused the crash.
    csgan97: If there is a bug, we would like to identify it. All findings are hypothesis and we still dont have evident to really prove that is multithreading issue. Is it possible to use dtrace to track?
    2) Based on dtrace, it indicated that there was a
    race condition happens but the jvm doesn�t crash
    during the occurrence.Again so? I wouldn't expect that to cause a crash.
    csgan97: Why? During the jvm crashed, the dtrace monitoring doesnt indicate any race condition. It only indicated twice but during that time the jvm doesnt crash.
    DriverName: [Oracle JDBC driver]
    URL: [jdbc:oracle:thinIf it is memory corruption then it would be a JVM bug not this driver because it is java only.
    If you have any JNI or 3rd party libraries that use JNI then those are the most likely source.
    csgan97: A far as we know there isnt any JNI or 3rd party libraries that use JNI.

  • Javamail application throws java.lang.OutOfMemoryError

    Hi,
    ive made and javamail application, whenever i attach an attachment of around 600 kb or more the weblogic server throws an java.lang.OutOfMemoryError . Shouldnt the server be able to handle attachments of around 600 kb-2 mb ?
    I'm using bea weblogic server 6.1 patch 4 with jdk 1.3.1 . Someone got a clue?, plz help, thanx.
    here is a part of the code:
    ByteArrayOutputStream buffer =
    new ByteArrayOutputStream();
    String name = null,
    value = null,
    filename = null,
    contentType = null;
    Dictionary fields = new Hashtable();
    int i = in.readLine(bytes, 0, 512);
    String st = null;
    while ( -1 != i) {
    st = new String(bytes, 0, i);
    //memoryerror is thrown here after looping a while
    if (st.startsWith(boundary)) {
    state = 0;
    if (null != name) {
    if (value != null) {
    fields.put(name,
    value.substring(0,
    // -2 to remove CR/LF
    value.length() - 2));
    else if (buffer.size() > 2) {
    InternetHeaders headers =
    new InternetHeaders();
    MimeBodyPart bodyPart =
    new MimeBodyPart();
    DataSource ds =
    new ByteArrayDataSource(
    buffer.toByteArray(),
    contentType, filename);
    bodyPart.setDataHandler(
    new DataHandler(ds));
    bodyPart.setDisposition(
    "attachment; filename=\"" +
    filename + "\"");
    bodyPart.setFileName(filename);

    Hi Dan,
    of course I can increase JVM memory, but that is not a right solution to hold whole network model in memory. You wrote that Release 2 brings some better approach that does not require loading of whole network into RAM. What I need to test it? I've 10.2 already installed. Do I need also new SDOAPI jars? If yes, where can be downloaded?
    Thanks
    Ondrej

  • How to download a .pdf file from a JavaMail application?

    hi to all,
    iam unable to download a .pdf file from a mailserver using
    my javamail application.i have downloaded all kind of files except .pdf.
    my code snipnet:
    public static void dumpPart(Part p) throws Exception {
    //     if (p instanceof Message)          dumpEnvelope((Message)p);
              System.out.println("CONTENT-TYPE: " + p.getContentType());
              Object o = p.getContent();
              if (o instanceof String) {
                   System.out.println("This is a String");
                   System.out.println((String)o);
                   } else if (o instanceof Multipart) {
                        System.out.println("This is a Multipart");
                        Multipart mp = (Multipart)o;
                        int count = mp.getCount();
    System.out.println("****************************************");
    System.out.println("count" + count);
    System.out.println("****************************************");
                        for (int i = 0; i < count; i++){
                             System.out.println("CONTENT-TYPE: " + p.getContentType());
                             dumpPart(mp.getBodyPart(i));
                        } else if (o instanceof InputStream) {
                             System.out.println("This is just an input stream");
                             InputStream is = (InputStream)o;
                             String filename=System.currentTimeMillis()+".exe     ";
                             FileOutputStream fos=new FileOutputStream(filename);
                             int c;
                             while ((c = is.read()) != -1)
                                  //System.out.write(c);
                                  fos.write((char)c);
    }//dumpPart
    what's wrong with this code?
    Nagaraju.G

    fos.write((char)c);Converting the byte to a char is unnecessary and probably harmful. Just do this: fos.write(c);

  • JavaMail application hanged with no error throwed at Transport.send

    JavaMail application hanged with no error throwed at Transport.send,even though I set the timeout property
    import java.util.Date;
    import java.util.Properties;
    import javax.mail.Authenticator;
    import javax.mail.Message;
    import javax.mail.PasswordAuthentication;
    import javax.mail.Session;
    import javax.mail.Transport;
    import javax.mail.internet.InternetAddress;
    import javax.mail.internet.MimeBodyPart;
    import javax.mail.internet.MimeMessage;
    import javax.mail.internet.MimeMultipart;
    import javax.mail.internet.MimeUtility;
    public class tt {
         static Properties props=null;
         static boolean needAuth=true;
         static MailAuthenticator authenticator = null;
         static String host="host";
         static String account="account";
         static String password="pwd";
         static String sender="sender";
          * @param args
          * @throws Exception
         public static void main(String[] args) throws Exception{
               if (props == null) {
                     props = new Properties();
                     props.put("mail.smtp.host", host);
                     props.put("mail.smtp.timeout      ", "1000");
                     props.put("mail.smtp.connectiontimeout      ", "1000");
    //                 props.put("mail.debug", "true");
                     props.put("mail.smtp.auth", String.valueOf(needAuth));
                     authenticator = new MailAuthenticator(account, password);
                 MailData mailData = new MailData();
                 mailData.setSubject("altireport mail configuration");
                 mailData.setContent("mail server has been configured successfully.");
                 mailData.setRecipients(new String[]{"[email protected]"});
                 final Session session = Session.getInstance(props, authenticator);
                 final MimeMessage msg = new MimeMessage(session);
                 InternetAddress from = new InternetAddress(sender);
                 msg.setFrom(from);
                 //        msg.setSender(from);
                final InternetAddress[] addressTo = new InternetAddress[mailData.getRecipients().length];
                 for (int i = 0; i < mailData.getRecipients().length; i++) {
                     addressTo[i] = new InternetAddress(mailData.getRecipients());
         msg.addRecipients(Message.RecipientType.TO, addressTo);
         //msg.setSubject(mailData.getSubject());
         msg.setSubject(MimeUtility.encodeText(mailData.getSubject(), "UTF-8", "B"));
         MimeBodyPart bodyPart1 = new MimeBodyPart();
         bodyPart1.setContent(mailData.getContent(), "text/plain; charset=UTF-8");
         MimeMultipart multipart = new MimeMultipart();
         multipart.addBodyPart(bodyPart1);
         msg.setContent(multipart);
         msg.setSentDate(new Date());
    //     msg.saveChanges();
         for(int i=0;i<10;i++){
              new Thread(new Runnable(){
                             public void run() {
                             try {
                                  System.out.println("send...");                                   
                                  Transport.send(msg);
                                  } catch (Exception e) {
                                       e.printStackTrace(System.out);
                        System.out.println("end!");
              }).start();
    class MailData {
    private String[] recipients = null;
    private String subject = null;
    private String content = null;
    private String attachment = null;
    private String attachmentName = null;
    * @return the attachment
    public String getAttachment() {
    return attachment;
    * @param attachment the attachment to set
    public void setAttachment(String attachment) {
    this.attachment = attachment;
    * @return the content
    public String getContent() {
    return content;
    * @param content the content to set
    public void setContent(String content) {
    this.content = content;
    * @return the recipients
    public String[] getRecipients() {
    return recipients;
    * @param recipients the recipients to set
    public void setRecipients(String[] recipients) {
    this.recipients = recipients;
    * @return the subject
    public String getSubject() {
    return subject;
    * @param subject the subject to set
    public void setSubject(String subject) {
    this.subject = subject;
    * @return the attachmentName
    public String getAttachmentName()
    return attachmentName;
    * @param attachmentName the attachmentName to set
    public void setAttachmentName(String attachmentName)
    this.attachmentName = attachmentName;
    class MailAuthenticator extends Authenticator {
    private PasswordAuthentication authentication;
    public MailAuthenticator(String account, String password) {
    authentication = new PasswordAuthentication(account, password);
    protected PasswordAuthentication getPasswordAuthentication() {
    return authentication;
    I have tried use session to get a SMTPTransport instance to use sendMessage ,but still have the same problem.No exception ,No error.
    This problem doesn't appear always. It appears sometimes.
    I hope get help for someone who has the solution for this problem.
    Thanks in advanced.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Ok, I think I see the problem:
         props.put("mail.smtp.timeout      ", "1000");
         props.put("mail.smtp.connectiontimeout      ", "1000");
    Why do you have spaces at the end of the property names?
    Those spaces are not being ignored, which means you've
    set the wrong properties.

  • Application aborted due to serious problems

    Hi,
    Wwhen I transfer PR from MM TO SRM via the report BBP_EXTREQ_TRANSFER.the atatus on the queue in MM is Application aborted due to serious problems.

    Hi,
    See these related threads for more pointers;
    PDP Issue
    Unable to transfer Purchase Requisition from ECC to EBP
    error in plan driven scenario
    BR,
    Disha.

  • Labview application aborts when ISS scans the computer.

    my labview application uses the web server for remote viewing. whenever the network is subject to an ISS scan, the application aborts. the OS is still running. by looking at the web log we have tracked the offending ISS test to:
    "http-cgi-bnbform (3093) Medium Risk
    BNBForm form processing CGI script allows remote file retrieval".
    turning the web server OFF eliminates the problem. the indication is that the web server has a vulnerability.
    LabView 6.1, Win2K

    How about a software firewall like ZoneAlarm? They have a free version that you can download. It would probibly work well enough for testing.
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • "Error creating JVM" in iPlanet Web Server 4.1SP7 when configured with JDK

    I need to configure iPlanet Web Server 4.1SP7 to execute JSP/Servlets on itself and lookup EJBs kept on IBM Websphere Application Server 4.0.1, both running on different servers with Sun Solaris.
    Whenever, I try to configure iPlanet Web Server 4.1 SP7 to use IBM's JDK 1.3.0 (provided with WAS 4.0) to lookup an EJB, iPlanet server stops as soon as it starts, giving:
    [07/Feb/2003:11:52:38] info ( 2788): Internal error: unable to create JVM acquire failed1:52:38] info ( 2788): NSServletSession::(late)init - JVMControl:: [07/Feb/2003:11:52:38] failure ( 2788): Failure to load JVM (check your JRE) on(late) NSServletLateInit: unknown error): conf_init: Error running init function
    Evenif, I configure it using Sun's JDK 1.4.0.03, iPlanet wS keeps on giving "Exiting JVM" in the error log..
    Now, I want to know, which JVMs are supported by iPlanet Web Server 4.1 SP7, that can be used to lookup deployed components (EJBs/Datasource) on Websphere Application Server 4.0.1?
    Regards,
    Vaibhav
    [email protected]

    I think you are running into this:
    http://sunsolve.sun.com/pub-cgi/retrieve.pl?doc=fsunone%2F8322&zone_32=-Xrs%2A%20
    Thanks
    Manish

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

  • Mechanism for monitor java application or JVM

    Ladies & Gentleman,
    I develop Java application under Windows 2000 datacenter. For gurantee to capture all of abnormal situation of java application and also JVM, I need to know how to capture the situation. Do any other tools to do these things? I am very appreciated if you could tell me.

    You don't exactly need any specific tools to just capture exceptions, that can easily be done by wrapping the program you want to monitor with your own main() method and adding some shutdown hooks...
    But it would be nice to know what you want to do once it happens....
    Regardless of which, here's an example of that wrap...
    import java.lang.reflect.*;
    public class Watch extends Thread
         public void run()
              System.out.println("VM is closing down");
         public static void main(String[] args) throws Exception
              if (args.length == 0)
                   System.out.println("You must supply the name of the class to start with.");
                   System.exit(1);
              Runtime.getRuntime().addShutdownHook(new Watch());
              try
                   Class theClass = Class.forName(args[0]);
                   Method theMethod = theClass.getDeclaredMethod("main", new Class[]{String[].class});
                   String[] theNewArray = new String[args.length - 1];
                   System.arraycopy(args, 1, theNewArray, 0, theNewArray.length);
                   System.out.println("Starting program with class "+args[0]+"...");
                   theMethod.invoke(null, new Object[]{theNewArray});
                   System.out.println("Program is done running.");
              catch (ClassNotFoundException cnfe)
                   System.out.println("No such class: '"+args[0]+"'");               
              catch (NoSuchMethodException nsme)
                   System.out.println("The class "+args[0]+" has no main method.");
              catch (SecurityException se)
                   System.out.println("Can't start: "+se.getMessage());
              catch (IllegalAccessException iae)
                   System.out.println("Can't invoke main method in class "+args[0]+": "+iae.getMessage());
              catch (Exception ite)
                   System.out.println("Exception occurred when running class "+args[0]+": "+ite.getMessage());
    }You can easily just swap those System.out's for something else.
    However, if you mean watching the process from outside the VM, then you need something else, I suppose.
    /F

  • Application and JVM Crash

    Hi Guys,
    I had encounter a very strange issue, my application suddenly crash and generate log below,
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x6d69f2de, pid=2000, tid=2016
    # Java VM: Java HotSpot(TM) Client VM (1.5.0-b64 mixed mode)
    # Problematic frame:
    # V [jvm.dll+0x5f2de]
    --------------- T H R E A D ---------------
    Current thread (0x00962c60): VMThread [id=2016]
    siginfo: ExceptionCode=0xc0000005, reading address 0x22a01110
    Registers:
    EAX=0x22a01110, EBX=0x00000003, ECX=0x22a7e6a8, EDX=0x6d761c98
    ESP=0x26c7fc14, EBP=0x26c7fc5c, ESI=0x22a7e680, EDI=0x6d7a6780
    EIP=0x6d69f2de, EFLAGS=0x00010202
    Top of Stack: (sp=0x26c7fc14)
    0x26c7fc14: 22a20290 00000000 6d704ce2 22a7e680
    0x26c7fc24: 6d704ca6 6d7a6780 6d704f01 6d7aab08
    0x26c7fc34: 6d745867 6d7aab08 6d7a6780 00920ea8
    0x26c7fc44: 6d6ac98e 6d7a6780 00000000 00000001
    0x26c7fc54: 00920ea8 00000000 26c7fcc4 6d6adbb5
    0x26c7fc64: 00000001 00000000 00000001 00000002
    0x26c7fc74: 6d7a6780 6d7a6780 00000001 00920ea8
    0x26c7fc84: 00000000 00000000 00000001 00000001
    Instructions: (pc=0x6d69f2de)
    0x6d69f2ce: e8 5e 59 06 00 59 8b 46 28 8d 4e 28 85 c0 74 0f
    0x6d69f2de: 8b 00 23 c3 3a c3 74 07 51 e8 45 59 06 00 59 8b
    Stack: [0x26c40000,0x26c80000), sp=0x26c7fc14, free space=255k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    V [jvm.dll+0x5f2de]
    V [jvm.dll+0x6dbb5]
    V [jvm.dll+0x6d94c]
    V [jvm.dll+0x70f41]
    V [jvm.dll+0xfcfbb]
    V [jvm.dll+0x6c7b0]
    V [jvm.dll+0x6ce40]
    V [jvm.dll+0x11768c]
    V [jvm.dll+0x117163]
    V [jvm.dll+0x117303]
    V [jvm.dll+0x117068]
    C [MSVCRT.dll+0x2a3b0]
    C [kernel32.dll+0xb729]
    VM_Operation (0x2762f988): full generation collection, mode: safepoint, requested by thread 0x27107b28
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x27784ad8 JavaThread "AWT-Windows" daemon [_thread_in_native, id=1916]
    0x26e2be60 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=1832]
    0x278db680 JavaThread "TP-Monitor" daemon [_thread_blocked, id=2704]
    0x278db440 JavaThread "TP-Processor4" daemon [_thread_in_native, id=2700]
    0x278cbb28 JavaThread "TP-Processor3" daemon [_thread_blocked, id=2696]
    0x278cb9a8 JavaThread "TP-Processor2" daemon [_thread_blocked, id=2692]
    0x278d29d0 JavaThread "TP-Processor1" daemon [_thread_blocked, id=2688]
    Did any one of you advice me on this?
    Thanks in advance for your help.

    Chicon wrote:
    shashi_rajak wrote:
    uninstall the current JVM and then install the latest version.I have 6 different versions of JRE installed on my computer, I never met such problem because of them.I have seen VM crashes due to bugs in the VM. They are usually solved by updating to a later release (of the same version). Why do you think they release minor updates?
    BTW, I know which of them is running when I launch a program. I don't see how that is relevant.
    This method has earlier solved similar problem faced by me.You were lucky. I got a similar problem because there was a bug in my program.Most bugs will likely be found in your application, but it's usually a VM bug if the VM crashes (unless you use JNI)

  • Application using JVM with IE embedded within it using its own JVM

    I am developing on an application that uses JVM to run. Within this application an IE browser is being called. Subsequently IE browser is trying to run an applet which is trying to open another jvm.
    It appears the version of Java I am using does not allow this. I believe this is fixed in a later release of java but don't know which one.
    I must have tried about 5 or 6 different versions of java and each time either getting an ASDAS error or a registry HKEY_LOCAL_MACHINE error.
    Any help would be appreciated.
    Thanks

    I am developing on an application that uses JVM to
    run. Within this application an IE browser is being
    called. Subsequently IE browser is trying to run an
    applet which is trying to open another jvm.
    It appears the version of Java I am using does not
    allow this. I believe this is fixed in a later
    release of java but don't know which one.
    I must have tried about 5 or 6 different versions of
    java and each time either getting an ASDAS error or a
    registry HKEY_LOCAL_MACHINE error.
    Huh?
    How exactly are you embedding IE into your app?
    Normally IE is a seperate process and in that case nothing that your original JVM is doing will have any impact on that.
    Of course the environment space that the spawned IE is being run with could very well impact it.
    Of course if you are actually embedding it in your app versus spinning up another process then that would not apply. But off hand I can't ever recall seeing an article that suggested IE could be embedded in another application.
    And what do you mean the applet is trying to run a jvm?
    An applet runs in a JVM. The only way an applet (or just a java app) can run a jvm is by using Runtime.exec() or via JNI. Is that what you are doing?

  • Certain application's JVM instance

    Hello,
    I didn't really know in what section to post this thread, so I figured this was the best one. If it is in the wrong section, notify me, and I will post it in the correct section.
    I am making an application in C which requires getting the process ID of a specific JVM instance. The problem isn't getting the process ID, but it's differentiating a VM instance from another. How would I go upon doing this?
    Thanks

    Wow! Can't get much easier than that :)
    Thanks alot!
    EDIT: The application I am trying to get runs as an applet. So unfortunately, every applet prints: sun.plugin2.main.client.PluginMain
    Any ideas?

  • I'm having problems with IWS 41SP8, the log error shows Aborting JVM, then Exiting JVM due to: jvm_abort () and jvm.exitOnAbort 0. What can I do?

    Additonal JVM exit statistics: AttachedThreads/Max=255/313, ActiveThreads/Max=323/323, and finally the web server restart.

    Hi,
    Please look out the below link.
    http://knowledgebase.iplanet.com/ikb/kb/articles/5063.html
    By the way i would request yout to use JDK1.2.2_011.
    I hope this helps.
    Regards,
    Dakshin.
    Developer Technical Support
    Sun Microsystems
    http://www.sun.com/developers/support.

Maybe you are looking for

  • How can I sort all my books into title order?

    Hi I'm familiar with how to search for book titles but it would be helpful if I could list all my books in alphabetical order.  Does anyone know how to do this please? Many thanks Rathi

  • ITunes 10 Can't backup iphone 4

    iPhone was set up at a Verizon store and not on my computer. I need to update the operating system. First I want to backup the existing phone. When I plug the phone in iTunes says "This computer has previously been synced with an iPhone or another iO

  • Is there a way to add a number to the items in a playlist?

    Is it possible to number the items in a playlist?  For example, I have books in order and I want to add numbers so I know which one to listen to next.

  • Installing Essbase 11.1.1.2 Excel Add In (Client) and EAS on remote laptop

    Hi, Just got done installing Essbase 11.1.1.2 on a single Win 2003 server. Everything is installed EAS and Essbase Client. However, I need the Essbase Client to be ported to many users that are running Excel 2003. Also, i need EAS client to run from

  • Accessing older music in itunes library

    I have music in my iTunes library which is from an old account, details of which I no longer have. I now cant access the music. The PC has been rebuilt, has all of the music which is visible, but i'm not allowed to use it.What do I do?