BankingAppServlet.java crashes javac?!

When I try to compile BankingAppServlet.java in the banking tutorial, I get this:
root@localhost dev]# echo $CLASSPATH
/bea/wlserver6.1/samples/examples/tutorials/banking/deploy/ejb:/usr/java/jdk1.3.1_02/lib/tools.jar:/bea/wlserver6.1/lib/weblogic.jar:/usr/java/j2sdkee1.3/lib/j2ee.jar
[root@localhost dev]# javac -d ../deploy/web/WEB-INF/classes web/BankAppServlet.java
line 0: expecting an identifier, found '('
at java.lang.Throwable.fillInStackTrace(Throwable.java:native)
at java.lang.Throwable.<init>(Throwable.java:38)
at java.lang.Exception.<init>(Exception.java:24)
at antlr.ANTLRException.<init>(ANTLRException.java:16)
at antlr.RecognitionException.<init>(RecognitionException.java:24)
at antlr.MismatchedTokenException.<init>(MismatchedTokenException.java:107)
at antlr.Parser.match(Parser.java:177)
at at.dms.kjc.KjcParser.jStatement(KjcParser.java:1761)
at at.dms.kjc.KjcParser.jCompoundStatement(KjcParser.java:1308)
at at.dms.kjc.KjcParser.jTryBlock(KjcParser.java:2145)
at at.dms.kjc.KjcParser.jStatement(KjcParser.java:1720)
at at.dms.kjc.KjcParser.jCompoundStatement(KjcParser.java:1308)
at at.dms.kjc.KjcParser.jMember(KjcParser.java:1105)
at at.dms.kjc.KjcParser.jClassBlock(KjcParser.java:926)
at at.dms.kjc.KjcParser.jClassDefinition(KjcParser.java:376)
at at.dms.kjc.KjcParser.jTypeDefinition(KjcParser.java:246)
at at.dms.kjc.KjcParser.jCompilationUnit(KjcParser.java:108)
at at.dms.kjc.Main.parseFile(Main.java:285)
at at.dms.kjc.Main.run(Main.java:88)
at at.dms.kjc.Main.compile(Main.java:255)
at at.dms.kjc.Main.main(Main.java:246)
The files I'm compiling come from http://e-docs.bea.com/wls/docs61//examples/banking.zip:
[root@localhost dev]# pwd
/bea/wlserver6.1/samples/examples/tutorials/banking/dev
[root@localhost dev]# ls -al ejb/*.java
-rw-rw-rw- 1 root root 7790 May 20 17:54 ejb/AccountBean.java
-rw-rw-rw- 1 root root 4666 May 20 14:19 ejb/AccountHome.java
-rw-rw-rw- 1 root root 2186 May 20 13:39 ejb/Account.java
-rw-rw-rw- 1 root root 438 May 20 14:21 ejb/BankConstants.java
-rw-rw-rw- 1 root root 11373 May 20 14:22 ejb/Client.java
-rw-rw-rw- 1 root root 813 May 20 13:39 ejb/ProcessingErrorException.java
-rw-rw-rw- 1 root root 2057 May 20 14:21 ejb/RMILoggerImpl.java
-rw-rw-rw- 1 root root 430 May 20 14:20 ejb/RMILogger.java
Similar files are part of the WebLogic installation:
[root@localhost dev]# cd ../../migration/banking
root@localhost banking]# pwd
/bea/wlserver6.1/samples/examples/tutorials/migration/banking
[root@localhost banking]# ls -al *.java
-rw-r--r-- 1 root root 7529 May 19 10:37 AccountBean.java
-rw-r--r-- 1 root root 4556 May 19 10:37 AccountHome.java
-rw-r--r-- 1 root root 2120 May 19 10:37 Account.java
-rw-r--r-- 1 root root 8260 May 19 10:37 BankAppServlet.java
-rw-r--r-- 1 root root 418 May 19 10:37 BankConstants.java
-rw-r--r-- 1 root root 11011 May 19 10:37 Client.java
-rw-r--r-- 1 root root 785 May 19 10:37 ProcessingErrorException.java
-rw-r--r-- 1 root root 1986 May 19 10:37 RMILoggerImpl.java
-rw-r--r-- 1 root root 413 May 19 10:37 RMILogger.java
I commented out the package specification in the first set:
// package examples.tutorials.migration.banking;
since it appears to reflect the organization of the second set; class files are consequently
compiled into /bea/wlserver6.1/samples/examples/tutorials/banking/deploy:
root@localhost ejb]# pwd
/bea/wlserver6.1/samples/examples/tutorials/banking/deploy/ejb
[root@localhost ejb]# ls -al
total 48 (hmm?..)
drwxrwxrwx 3 root root 4096 May 20 17:53 .
drwxrwxrwx 5 root root 4096 Nov 29 15:25 ..
-rw-r--r-- 1 root root 3812 May 20 17:55 AccountBean.class
-rw-r--r-- 1 root root 350 May 20 17:55 Account.class
-rw-r--r-- 1 root root 567 May 20 17:55 AccountHome.class
-rw-r--r-- 1 root root 428 May 20 17:55 BankConstants.class
-rw-r--r-- 1 root root 7096 May 20 17:55 Client.class
drwxrwxrwx 2 root root 4096 Dec 4 14:11 META-INF
-rw-r--r-- 1 root root 303 May 20 17:55 ProcessingErrorException.class
-rw-r--r-- 1 root root 221 May 20 17:55 RMILogger.class
-rw-r--r-- 1 root root 1366 May 20 17:55 RMILoggerImpl.class
What the heck?
And I just thought I'd mention that "samples/examples/tutorials" seems a bit redundant...
and it'd be nice to have a preview function here.

When I try to compile BankingAppServlet.java in the banking tutorial, I get this:
root@localhost dev]# echo $CLASSPATH
/bea/wlserver6.1/samples/examples/tutorials/banking/deploy/ejb:/usr/java/jdk1.3.1_02/lib/tools.jar:/bea/wlserver6.1/lib/weblogic.jar:/usr/java/j2sdkee1.3/lib/j2ee.jar
[root@localhost dev]# javac -d ../deploy/web/WEB-INF/classes web/BankAppServlet.java
line 0: expecting an identifier, found '(' at
java.lang.Throwable.fillInStackTrace(Throwable.java:native) at
java.lang.Throwable.<init>(Throwable.java:38) at
java.lang.Exception.<init>(Exception.java:24) at
antlr.ANTLRException.<init>(ANTLRException.java:16) at
antlr.RecognitionException.<init>(RecognitionException.java:24) at
antlr.MismatchedTokenException.<init>(MismatchedTokenException.java:107) at
antlr.Parser.match(Parser.java:177) at
at.dms.kjc.KjcParser.jStatement(KjcParser.java:1761) at
at.dms.kjc.KjcParser.jCompoundStatement(KjcParser.java:1308) at
at.dms.kjc.KjcParser.jTryBlock(KjcParser.java:2145) at
at.dms.kjc.KjcParser.jStatement(KjcParser.java:1720) at
at.dms.kjc.KjcParser.jCompoundStatement(KjcParser.java:1308) at
at.dms.kjc.KjcParser.jMember(KjcParser.java:1105) at
at.dms.kjc.KjcParser.jClassBlock(KjcParser.java:926) at
at.dms.kjc.KjcParser.jClassDefinition(KjcParser.java:376) at
at.dms.kjc.KjcParser.jTypeDefinition(KjcParser.java:246) at
at.dms.kjc.KjcParser.jCompilationUnit(KjcParser.java:108) at
at.dms.kjc.Main.parseFile(Main.java:285) at
at.dms.kjc.Main.run(Main.java:88) at
at.dms.kjc.Main.compile(Main.java:255) at
at.dms.kjc.Main.main(Main.java:246)
The files I'm compiling come from http://e-docs.bea.com/wls/docs61//examples/banking.zip:
[root@localhost dev]# pwd
/bea/wlserver6.1/samples/examples/tutorials/banking/dev
[root@localhost dev]# ls -al ejb/*.java
-rw-rw-rw- 1 root root 7790 May 20 17:54 ejb/AccountBean.java
-rw-rw-rw- 1 root root 4666 May 20 14:19 ejb/AccountHome.java
-rw-rw-rw- 1 root root 2186 May 20 13:39 ejb/Account.java
-rw-rw-rw- 1 root root 438 May 20 14:21 ejb/BankConstants.java
-rw-rw-rw- 1 root root 11373 May 20 14:22 ejb/Client.java
-rw-rw-rw- 1 root root 813 May 20 13:39 ejb/ProcessingErrorException.java
-rw-rw-rw- 1 root root 2057 May 20 14:21 ejb/RMILoggerImpl.java
-rw-rw-rw- 1 root root 430 May 20 14:20 ejb/RMILogger.java
Similar files are part of the WebLogic installation:
[root@localhost dev]# cd ../../migration/banking
[root@localhost banking]# pwd
/bea/wlserver6.1/samples/examples/tutorials/migration/banking
[root@localhost banking]# ls -al *.java
-rw-r--r-- 1 root root 7529 May 19 10:37 AccountBean.java
-rw-r--r-- 1 root root 4556 May 19 10:37 AccountHome.java
-rw-r--r-- 1 root root 2120 May 19 10:37 Account.java
-rw-r--r-- 1 root root 8260 May 19 10:37 BankAppServlet.java
-rw-r--r-- 1 root root 418 May 19 10:37 BankConstants.java
-rw-r--r-- 1 root root 11011 May 19 10:37 Client.java
-rw-r--r-- 1 root root 785 May 19 10:37 ProcessingErrorException.java
-rw-r--r-- 1 root root 1986 May 19 10:37 RMILoggerImpl.java
-rw-r--r-- 1 root root 413 May 19 10:37 RMILogger.java
I commented out the package specification in the first set:
// package examples.tutorials.migration.banking;
since it appears to reflect the organization of the second set; class files are consequently
compiled into /bea/wlserver6.1/samples/examples/tutorials/banking/deploy:
root@localhost ejb]# pwd
/bea/wlserver6.1/samples/examples/tutorials/banking/deploy/ejb
[root@localhost ejb]# ls -al
total 48 (hmm?..)
drwxrwxrwx 3 root root 4096 May 20 17:53 .
drwxrwxrwx 5 root root 4096 Nov 29 15:25 ..
-rw-r--r-- 1 root root 3812 May 20 17:55 AccountBean.class
-rw-r--r-- 1 root root 350 May 20 17:55 Account.class
-rw-r--r-- 1 root root 567 May 20 17:55 AccountHome.class
-rw-r--r-- 1 root root 428 May 20 17:55 BankConstants.class
-rw-r--r-- 1 root root 7096 May 20 17:55 Client.class
drwxrwxrwx 2 root root 4096 Dec 4 14:11 META-INF
-rw-r--r-- 1 root root 303 May 20 17:55 ProcessingErrorException.class
-rw-r--r-- 1 root root 221 May 20 17:55 RMILogger.class
-rw-r--r-- 1 root root 1366 May 20 17:55 RMILoggerImpl.class
What the heck?
And I just thought I'd mention that "samples/examples/tutorials" seems a bit redundant...
and it'd be nice to have a preview function here.

Similar Messages

  • Using Runtime exec() to open and close process like java or javac

    Hi, I m a student who is learning IT and is wondering if
    Runtime exec() can run and stop commands like java and javac?
    Can someone post the code to do so here?Thank you

    Well, Here is my complete code:
    import java.util.*;
    import java.io.*;
    import javax.swing.*;
    import java.awt.event.*;
    import java.awt.*;
    class StreamGobbler extends Thread
    InputStream is;
    String type;
    StreamGobbler(InputStream is, String type)
    this.is = is;
    this.type = type;
    public void run()
    try
    InputStreamReader isr = new InputStreamReader(is);
    BufferedReader br = new BufferedReader(isr);
    String line=null;
    while ( (line = br.readLine()) != null)
    System.out.println(type + ">" + line);
    } catch (IOException ioe)
    ioe.printStackTrace();
    class Program implements Runnable
         Process proc;
    String args[];
         String[] cmd = new String[4];
         boolean isGone=false;
         public Program(String args[])
              this.args=args;
         public void run()
              if (isGone==true)
                   try
                        Runtime.getRuntime().exec(cmd).destroy();
                   catch(IOException e)
                        System.out.println("Error: "+e.toString());
                   System.out.println("User abort");
         public void start(String args[])
              if (args.length < 1)
    System.out.println("USAGE: java GoodWindowsExec <cmd>");
    System.exit(1);
    try
    String osName = System.getProperty("os.name" );
    if( osName.equals( "Windows NT" ) )
    cmd[0] = "cmd.exe" ;
    cmd[1] = "/C" ;
    cmd[3] = args[0];
    else if( osName.equals( "Windows 95" ) ||osName.equals( "Windows 98" ))
    cmd[0] = "command.com" ;
    cmd[1] = "/C" ;
    cmd[2] = args[0];
                        cmd[3]=args[1];
    Runtime rt = Runtime.getRuntime();
    // System.out.println("Execing " + cmd[0] + " " + cmd[1]
    // + " " + cmd[2]+" "+args[1]);                                    
    proc = rt.exec(cmd);
    // any error message?
    StreamGobbler errorGobbler = new
    StreamGobbler(proc.getErrorStream(), "ERROR");
    // any output?
    StreamGobbler outputGobbler = new
    StreamGobbler(proc.getInputStream(), "OUTPUT");
    // kick them off
    errorGobbler.start();
    outputGobbler.start();
    // any error???
    // int exitVal = proc.waitFor();
    //System.out.println("ExitValue: " + exitVal);
    } catch (Throwable t)
    t.printStackTrace();
         public void destroy()
              isGone=true;
    class test1 implements ActionListener
         String s[]={"c:\\jdk1.3\\bin\\java.exe","ContactProcessor1"};
         GUI g=new GUI();
              Program p=new Program(s);
         public test1()
              //didnt work
              g.getStart().addActionListener(this);
              g.getStop().addActionListener(this);
              g.show();
         public void actionPerformed(ActionEvent e)
              if (e.getSource()==g.getStart())
                   p.start(s);
                   p.run();
              if (e.getSource()==g.getStop())
                   p.destroy();
                   p.run();
         public static void main(String args[])
              test1 t = new test1();
    class GUI extends JFrame
         JButton start;
         JButton stop;
         public GUI()
              super();
              getContentPane().setLayout(new FlowLayout());
              start=new JButton("start");
              stop=new JButton("stop");
              getContentPane().add(start);
              getContentPane().add(stop);
              setSize(100,100);
         public JButton getStart()
              return start;
         public JButton getStop()
              return stop;
    }

  • Java crashes on a solaris 9 randomly with a core dump

    Hello
    Currently we are using JBoss Application server on solaris 9. Over a period of time. Java crashes suddenly. The condition under which this can be reproduced is currently not reproduceable. But over a period of time, this crash just happens.
    The following is the stack trace of the core file. Can somebody see this and let me know what could be the possible problem.
    bash-2.05# adb java.3558.1133780573
    core file = java.3558.1133780573 -- program `` /global/netmfs/netmbase/NetM62/licensing/jre/bin/java'' on platform SUNW,Sun-Fire-V440
    SIGABRT: Abort
    $c
    libc.so.1`_lwp_kill+8(6, 0, acf7b6e8, 2, 0, af2d482c) libc.so.1`abort+0x100(2d80f8, b, b3ef0040, 0, 48, 0) libkernel32.so`__1cUSehScanInvokeTryList6FpnQSEH_THREAD_BLOCK__i_+0x334(2d9790,
    af1cd7f8, af2d7324, 0, 2, 0)
    libkernel32.so`__1cOSignal_HandlerFraise6FIpviipL_i_+0xfc(c0000005, acf7ba20, 0 , 2, acf7b858, 1800) libkernel32.so`__1cPRaise_Exception2f6MipnHsiginfo_pv_v_+0xa4(516f28, b, acf7bcd8, acf7ba20, af2ea1e4, 2c) libthread.so.1`__sighndlr+0xc(b, acf7bcd8, acf7ba20, af1cd854, 0, 0) libthread.so.1`call_user_handler+0x234(b, acf7bcd8, acf7ba20, 0, 0, 0) libthread.so.1`sigacthandler+0x64(b, acf7bcd8, acf7ba20, 1, f6e89af0, 3ba) 0xfa0f4520(b5fec400, f6e89af0, b5fec550, 3ba, fa015624, b5fed448) 0xfa43586c(f5c770a8, b5fec530, bcdddf90, b5fec530, bcdddf90, b5fec400) 0xfa005b10(f6e8a270, b6, 8, fa0155e0, f6e847a0, acf7bf70) 0xfa005b10(2d6b00, b8, acf7c0e4, fa0152c0, fa015624, acf7c000) 0xfa005b10(2d6b00, b8, 8, fa015590, feca1858, acf7c078) 0xfa005b10(2d6b00, 0, 0, fa0155e0, 3349f0, acf7c108) 0xfa000118(acf7c1f0, acf7c388, a, f6e89818, fa00aae0, acf7c328) libjvm.so`__1cJJavaCallsLcall_helper6FpnJJavaValue_pnMmethodHandle_pnRJavaCallAr
    guments_pnGThread__v_+0x274(acf7c380, acf7c318, acf7c320, 2d6b00, 2d6b00, 34e9cc
    libjvm.so`JVM_DoPrivileged+0x4c0(632adc, ff0104d0, acf7c65c, 0, 1, 1) libjava.so`Java_java_security_AccessController_doPrivileged__Ljava_security_Priv
    ilegedExceptionAction_2+0x14(2d6b94, acf7c5e0, acf7c65c, ffffffff, fa015624, 0) 0xfa00be48(2d6b00, b8, 15c, 4, f6e847a0, acf7c5f8) 0xfa005b10(2d6b00, 0, 0, fa015480, 3349f0, acf7c690) 0xfa000118(acf7c778, acf7c838, a, f6e87d18, fa00aae0, acf7c844) libjvm.so`__1cJJavaCallsLcall_helper6FpnJJavaValue_pnMmethodHandle_pnRJavaCallAr
    guments_pnGThread__v_+0x274(acf7c830, acf7c82c, acf7c840, 2d6b00, 2d6b00,
    acf7d170)
    libjvm.so`__1cNinstanceKlassbBcall_class_initializer_impl6FnTinstanceKlassHandle
    pnGThread_v_+0xfc(acf7c950, 2d6b00, 10b, acf7c9e8, 1, 0) libjvm.so`__1cNinstanceKlassPinitialize_impl6FnTinstanceKlassHandle_pnGThread__v
    +0x4f4(acf7ca98, 2d6b00, acf7d490, 2d741c, 2d6b00, 0) libjvm.so`_1cNinstanceKlassKinitialize6MpnGThread__v_+0x84(f6e87dd0, 2d6b00, 1b8, f5c01e00, acf7cb5c, 1) libjvm.so`__1cMLinkResolverTresolve_static_call6FrnICallInfo_rnLKlassHandle_nMsy
    mbolHandle_53iipnGThread__v_+0x190(0, 2d6b00, ff0104d0, acf7cc54, acf7cc50, 1) libjvm.so`__1cMLinkResolverOresolve_invoke6FrnICallInfo_nGHandle_nSconstantPoolH
    andle_inJBytecodesECode_pnGThread__v_+0xd8(acf7cf44, acf7cf0c, acf7cf08, 12, b8 , 2d6b00) libjvm.so`__1cSInterpreterRuntimeOresolve_invoke6FpnKJavaThread_nJBytecodesECode
    __v_+0x6ac(2d6b00, b8, 8, b5feaea8, f6e80c78, 0) 0xfa01561c(2d6b00, b8, b5feaf20, fa015590, fa015624, acf7d0d0) 0xfa005b10(2d6b00, b8, 1b9, fa015590, f6dc6a20, acf7d170) 0xfa005b10(2d6b00, b8, 8, fa0155e0, f6dc6a20, acf7d208) 0xfa005b10(2d6b00, b8, acf7d3ac, fa015590, f6dc9888, acf7d2b0) 0xfa005b10(2d6b00, b8, 8, fa015590, f6dc6a20, acf7d340) 0xfa005b10(2d6b00, 0, 0, fa0155e0, 3349f0, acf7d3c8) 0xfa000118(acf7d4b0, acf7d570, a, f6dc87d0, fa00aae0, acf7d57c) libjvm.so`__1cJJavaCallsLcall_helper6FpnJJavaValue_pnMmethodHandle_pnRJavaCallAr
    guments_pnGThread__v_+0x274(acf7d568, acf7d564, acf7d578, 2d6b00, 2d6b00, 0) libjvm.so`__1cNinstanceKlassbBcall_class_initializer_impl6FnTinstanceKlassHandle
    pnGThread_v_+0xfc(acf7d688, 2d6b00, 10b, acf7d720, 1, 0) libjvm.so`__1cNinstanceKlassPinitialize_impl6FnTinstanceKlassHandle_pnGThread__v
    +0x4f4(acf7d7d0, 2d6b00, acf7e118, 2d72c4, 2d6b00, b5c49570) libjvm.so`_1cNinstanceKlassKinitialize6MpnGThread__v_+0x84(f6dc9700, 2d6b00, 1b8, f5c01e00, acf7d894, 1) libjvm.so`__1cMLinkResolverTresolve_static_call6FrnICallInfo_rnLKlassHandle_nMsy
    mbolHandle_53iipnGThread__v_+0x190(0, 2d6b00, ff0104d0, acf7d98c, acf7d988, 1) libjvm.so`__1cMLinkResolverOresolve_invoke6FrnICallInfo_nGHandle_nSconstantPoolH
    andle_inJBytecodesECode_pnGThread__v_+0xd8(acf7dc7c, acf7dc44, acf7dc40, 6d, b8 , 2d6b00) libjvm.so`__1cSInterpreterRuntimeOresolve_invoke6FpnKJavaThread_nJBytecodesECode
    __v_+0x6ac(2d6b00, b8, acf7de5c, fa0155d8, fa015624, acf7dd50) 0xfa01561c(2d6b00, b8, b5c47f38, fa015590, f67cf4d0, acf7dde8) 0xfa005a44(2d6b00, b8, 3, fa015590, fa015304, acf7deb8) 0xfa005b54(be833b70, b6, acf7e024, fa015590, fa015304, acf7df48) 0xfa005b54(be833b78, b6, acf7e0a4, fa015270, b6080000, acf7dfc8) 0xfa005b54(2d6b00, 0, 0, fa015270, 3349f0, acf7e048) 0xfa000118(acf7e138, acf7e270, a, f67d9ba0, fa00aae0, acf7e2ac) libjvm.so`__1cJJavaCallsLcall_helper6FpnJJavaValue_pnMmethodHandle_pnRJavaCallAr
    guments_pnGThread__v_+0x274(acf7e268, acf7e264, acf7e29c, 2d6b00, 2d6b00,
    fece7f70)
    libjvm.so`__1cKReflectionGinvoke6FnTinstanceKlassHandle_nMmethodHandle_nGHandle_
    inOobjArrayHandle_nJBasicType_4ipnGThread__pnHoopDesc__+0xeec(0, acf7e3c0, ff0104d0, 1, f67cf810, a) libjvm.so`__1cKReflectionNinvoke_method6FpnHoopDesc_nGHandle_nOobjArrayHandle_pn
    GThread__2_+0x230(be3e4900, acf7e448, acf7e444, 2d6b00, feda0bd0, acf7e810) libjvm.so`JVM_InvokeMethod+0x26c(acf7e5b0, acf7e5ac, ff005ddc, ff0073e8, c6, 0) libjava.so`Java_sun_reflect_NativeMethodAccessorImpl_invoke0+0x10(2d6b94,
    acf7e528, acf7e5b4, acf7e5b0, acf7e5ac, 0) 0xfa00be48(b5fed8d0, b8, acf7e634, c, b6080000, acf7e540) 0xfa005b10(b5fefd98, be8339c0, b5fed8d0, fa015590, f6b5c960, acf7e5d8) 0xfa2267c4(b5fefdb0, be8339c0, b60a0028, fa015270, 1, acf7e648) 0xfa2264e0(be3f5ca8, be8339c0, b60a0028, be3f5c70, f5c2a550, f5c2a550) 0xfa005b10(be41d6d8, f65ee028, acf7e878, fa015270, f68e6d70, acf7e778) 0xfa005fd8(be40db50, f65ee028, acf7e914, fa0156f0, f6229940, acf7e810) 0xfa005fd8(be3f6f48, b6, 49, fa0156f0, c6, acf7e8b0) 0xfa005b10(be3f6f48, b7, acf7ea70, fa0152b8, 0, acf7e978) 0xfa005b10(be3f6f48, f65ee028, acf7eb00, fa015430, fa00aae0, acf7ea10) 0xfa005fd8(be3ebba8, f65ee028, acf7eb98, fa0156f0, 2d6b00, acf7eaa0) 0xfa005fd8(be481ee8, f65ee028, acf7ec30, fa0156f0, 42e6f04c, acf7eb38) 0xfa005fd8(be47c270, f65ee028, acf7ecc0, fa0156f0, 1, acf7ebd0) 0xfa005fd8(be448ef8, b6, acf7ed90, fa0156f0, f620a188, acf7ec50) 0xfa005b10(be448ef8, b6, 0, fa015270, b6080000, acf7ed18) 0xfa005b10(be449a38, b6, acf7eed0, fa015270, c6, acf7edc8) 0xfa005b10(be6e0488, f5ee2070, 4, fa015270, f5c045c0, acf7ee58) 0xfa005fd8(2d6b00, 0, 0, fa015740, 3349f0, acf7ef00) 0xfa000118(acf7eff0, acf7f128, a, f67f5f50, fa00aae0, acf7f164) libjvm.so`__1cJJavaCallsLcall_helper6FpnJJavaValue_pnMmethodHandle_pnRJavaCallAr
    guments_pnGThread__v_+0x274(acf7f120, acf7f11c, acf7f154, 2d6b00, 2d6b00,
    fece7f70)
    libjvm.so`__1cKReflectionGinvoke6FnTinstanceKlassHandle_nMmethodHandle_nGHandle_
    inOobjArrayHandle_nJBasicType_4ipnGThread__pnHoopDesc__+0xeec(0, acf7f278, ff0104d0, 1, f67cf810, a) libjvm.so`__1cKReflectionNinvoke_method6FpnHoopDesc_nGHandle_nOobjArrayHandle_pn
    GThread__2_+0x230(be849d88, acf7f300, acf7f2fc, 2d6b00, feda0bd0, acf7f6c8) libjvm.so`JVM_InvokeMethod+0x26c(acf7f468, acf7f464, ff005ddc, ff0073e8, 20, 0) libjava.so`Java_sun_reflect_NativeMethodAccessorImpl_invoke0+0x10(2d6b94,
    acf7f3e0, acf7f46c, acf7f468, acf7f464, 0) 0xfa00be48(b5fed810, b8, acf7f4ec, c, b6080000, acf7f3f8) 0xfa005b10(b5fed8a8, be6d7ab8, b5fed810, fa015590, 3230bc, acf7f490) 0xfa2267c4(b5fed8c0, be6d7ab8, b60a0000, fa015270, be843a68, acf7f500) 0xfa2264e0(b5fed858, be6d7ab8, b60a0000, b5fed858, 1, 0) 0xfa005b10(be6de080, b6, b5fed858, fa015270, be6d4478, acf7f620) 0xfa005b10(be6de080, b6, acf7f7c8, fa015270, 96, acf7f6c8) 0xfa005b10(be6de080, f5ee2070, 4, fa015270, f5c045c0, acf7f750) 0xfa005fd8(be6d6a18, f67d91d0, 8, fa015740, fa015304, acf7f7f8) 0xfa00601c(be6a3ac0, b6, 8, fa015590, 8, acf7f8a0) 0xfa005b54(be6a3ac0, f640af90, acf7fa7c, fa015270, f640af90, acf7f978) 0xfa005fd8(be8338f8, b7, 0, fa0156f0, f640af90, acf7fa08) 0xfa005c64(be8338f8, b7, acf7fb18, fa015430, be8338f8, acf7fab0) 0xfa005c64(acf7fba8, 0, 0, fa015430, 3349f0, acf7fb48) 0xfa000118(acf7fc30, acf7fe98, a, f6496780, fa00aae0, acf7fdb8) libjvm.so`__1cJJavaCallsLcall_helper6FpnJJavaValue_pnMmethodHandle_pnRJavaCallAr
    guments_pnGThread__v_+0x274(acf7fe90, acf7fcf8, acf7fdb0, 2d6b00, 2d6b00,
    acf7fd08)
    libjvm.so`__1cJJavaCallsMcall_virtual6FpnJJavaValue_nLKlassHandle_nMsymbolHandle
    _4pnRJavaCallArguments_pnGThread__v_+0x164(feff0000, 2d71e8, acf7fda4, acf7fda0 , acf7fdb0, 2d6b00) libjvm.so`__1cJJavaCallsMcall_virtual6FpnJJavaValue_nGHandle_nLKlassHandle_nMsym
    bolHandle_5pnGThread__v_+0x60(acf7fe90, acf7fe8c, acf7fe84, acf7fe7c, acf7fe74,
    2d6b00)
    libjvm.so`__1cMthread_entry6FpnKJavaThread_pnGThread__v_+0x128(2d6b00, 2d6b00, 2d6190, 2d71e8, 319508, fecd6a5c) libjvm.so`__1cKJavaThreadDrun6M_v_+0x288(2d6b00, 0, ff00f808, ffff8000, 0, 0) libjvm.so`_start+0x134(2d6b00, 0, 0, 0, 0, 0) libthread.so.1`_lwp_start(0, 0, 0, 0, 0, 0)
    Second Core dump with adb
    bash-2.05# adb java.9337.1133744404
    .core file = java.9337.1133744404 -- program `` /global/netmfs/netmbase/NetM62/licensing/jre/bin/java'' on platform SUNW,Sun-Fire-V440
    SIGABRT: Abort
    .$c
    $c
    libc.so.1`_lwp_kill+8(6, 0, ad0fc950, 2, 0, aeed482c) libc.so.1`abort+0x100(bd90f8, b, b3670200, 0, 48, 0) libkernel32.so`__1cUSehScanInvokeTryList6FpnQSEH_THREAD_BLOCK__i_+0x334(6197b0,
    aedcd7f8, aeed7324, 0, 2, 0)
    libkernel32.so`__1cOSignal_HandlerFraise6FIpviipL_i_+0xfc(c0000005, ad0fcc88, 0 , 2, ad0fcac0, 1800) libkernel32.so`__1cPRaise_Exception2f6MipnHsiginfo_pv_v_+0xa4(50c028, b, ad0fcf40, ad0fcc88, aeeea1e4, 2c) libthread.so.1`__sighndlr+0xc(b, ad0fcf40, ad0fcc88, aedcd854, 0, 0) libthread.so.1`call_user_handler+0x234(b, ad0fcf40, ad0fcc88, 0, 0, 0) libthread.so.1`sigacthandler+0x64(b, ad0fcf40, ad0fcc88, fa015590, b6130000,
    ad0fcfc0)
    0xfa0157f0(b5cb5908, b6, 8, fa015740, 0, ad0fd070) 0xfa005c64(b5cb5908, b7, ad0fd208, fa015270, b5cb1c90, ad0fd118) 0xfa005c64(b5cb5908, b7, 0, fa015430, b6130000, ad0fd1a8) 0xfa005c64(be56d460, b6, 8, fa015430, f691f2b0, ad0fd240) 0xfa005b10(be56d498, b6, be574c70, fa015270, 4889ba9b, ad0fd330) 0xfa005b10(be56d4a8, b7, ad0fd4d4, fa015270, 9, ad0fd3c8) 0xfa005b10(be56d4a8, b7, 0, fa015430, b6130000, ad0fd448) 0xfa005b10(be56d4a8, f6915008, 8, fa015430, 42a1665e, ad0fd540) 0xfa005fd8(bd44ecd0, f63b2338, ad0fd6c4, fa0156f0, b5cb4b38, ad0fd5d8) 0xfa005fd8(b5cb4a60, b7, ad0fd6d0, fa0156f0, b5cb4b48, ad0fd660) 0xfa005b10(b5cb4a60, b6, ad0fd818, fa015430, f65b7528, ad0fd718) 0xfa005b10(bd41bcf0, f63b1548, ad0fd8a0, fa015270, b6130000, ad0fd7b8) 0xfa005fd8(bd410620, b7, ad0fd934, fa0156f0, b6130000, ad0fd840) 0xfa005b10(bd410620, b6, ad0fd9c4, fa015430, b6130000, ad0fd8d0) 0xfa005b10(bd410620, b6, ad0fda44, fa015270, b6130000, ad0fd968) 0xfa005b10(bd8d1420, f63aa0c8, ad0fdad4, fa015270, 4400, ad0fd9e8) 0xfa005fd8(bd8c7f60, f65c2490, ad0fdb5c, fa0156f0, f6906720, ad0fda70) 0xfa005fd8(be548400, f68f50b0, ad0fdbe8, fa0156f0, f65b4158, ad0fdaf0) 0xfa005fd8(b5caf718, f6d147c0, 0, fa0156f0, b6130000, ad0fdb80) 0xfa005fd8(b5caeb10, b7, ad0fdcf8, fa0156f0, b6130000, ad0fdc10) 0xfa005c64(b5caeb10, f6a62080, ad0fdd8c, fa015430, f6ad6088, ad0fdc90) 0xfa005fd8(b5caf718, f6d147c0, ad0fde3c, fa0156f0, b6130000, ad0fdd20) 0xfa005fd8(be6abc20, b6, 0, fa015738, b6130000, ad0fddd0) 0xfa005b10(be6abc20, b7, ad0fdf94, fa015270, 4400, ad0fdea0) 0xfa005b10(be6abc20, b7, 0, fa015478, b6130000, ad0fdf38) 0xfa005b10(be6abc20, b7, 0, fa015478, f6864318, ad0fdfc8) 0xfa005b10(be6abc20, b6, ad0fe14c, fa015430, 3230bc, ad0fe058) 0xfa005b10(be6abc20, b7, ad0fe1d8, fa015270, b6130000, ad0fe0f0) 0xfa005b10(be6abc20, f6ad6088, ad0fe264, fa015430, f6ad6088, ad0fe178) 0xfa005fd8(be695da8, f6ab5750, 0, fa0156f0, b6130000, ad0fe208) 0xfa005fd8(b5caeb10, b7, ad0fe3ac, fa0156f0, f65b4158, ad0fe2a8) 0xfa005b10(b5caeb10, b7, ad0fe43c, fa015478, b6130000, ad0fe350) 0xfa005b10(b5caeb10, f6a62080, ad0fe4c8, fa015478, f5c355f8, ad0fe3e0) 0xfa005fd8(be7db4e8, b6, ad0fe55c, fa0156f0, aeed28, ad0fe468) 0xfa005b10(be7db4e8, b7, 0, fa015590, b6130000, ad0fe4f0) 0xfa005b10(be7db4e8, f6da8e80, ad0fe664, fa0156f0, fa0154c4, ad0fe580) 0xfa005fd8(be7d8e20, b7, ad0fe700, fa015270, f68e2490, ad0fe608) 0xfa005c64(be7d8e20, b7, ad0fe788, fa015430, fa0154c4, ad0fe6a0) 0xfa005c64(be7d8e20, b7, ad0fe808, fa015270, fa015624, ad0fe728) 0xfa005c64(aeed28, b8, ad0fe888, fa015430, f5c05cb0, ad0fe7a8) 0xfa005c64(b5c556a8, f66f5b10, ad0fe910, fa015270, f66f5b10, ad0fe828) 0xfa00612c(aeed28, 0, 0, fa0156f0, 3349f0, ad0fe8b0) 0xfa000118(ad0fe9a0, ad0fead8, a, f66f5668, fa00aae0, ad0feb10) libjvm.so`__1cJJavaCallsLcall_helper6FpnJJavaValue_pnMmethodHandle_pnRJavaCallAr
    guments_pnGThread__v_+0x274(ad0fead0, ad0feacc, ad0feb04, aeed28, aeed28,
    fece7f70)
    libjvm.so`__1cKReflectionGinvoke6FnTinstanceKlassHandle_nMmethodHandle_nGHandle_
    inOobjArrayHandle_nJBasicType_4ipnGThread__pnHoopDesc__+0xeec(0, ad0fec28, ff0104d0, 1, f655dbd0, e) libjvm.so`__1cKReflectionNinvoke_method6FpnHoopDesc_nGHandle_nOobjArrayHandle_pn
    GThread__2_+0x230(be023bb0, ad0fecb0, ad0fecac, aeed28, feda0bd0, ad0ff080) libjvm.so`JVM_InvokeMethod+0x26c(ad0fede8, ad0fede4, ff005ddc, ff0073e8, f6159f00, ad0ff120) libjava.so`Java_sun_reflect_NativeMethodAccessorImpl_invoke0+0x10(aeedbc,
    ad0fed84, ad0fedec, ad0fede8, ad0fede4, fece6088) 0xfa4067a8(be07f5a8, be7d8938, b5c53fc0, fa015430, 20, 0) 0xfa4062a8(be7d8e28, be7d8938, b5c53fc0, fa013bc8, bd0ac0f0, ad0fee58) 0xfa226284(be7d8e40, be7d8938, b5c53fc0, bd0ac040, f6159f00, 1) 0xfa225fa0(be07f5a8, be7d8938, b5c53fc0, 1, f5c2a550, f5c2a550) 0xfa005b10(be035120, f660cb18, ad0ff0e8, fa015270, f661f5d0, ad0fefe8) 0xfa005fd8(be0281a0, f660cb18, ad0ff184, fa0156f0, f6226670, ad0ff080) 0xfa005fd8(be023b70, b6, 49, fa0156f0, f6159f00, ad0ff120) 0xfa005b10(be023b70, b7, ad0ff2e0, fa0137d8, 0, ad0ff1e8) 0xfa005b10(be023b70, f660cb18, ad0ff370, fa015430, 20, ad0ff280) 0xfa005fd8(be0741e0, f660cb18, ad0ff408, fa0156f0, bd0ac0f0, ad0ff310) 0xfa005fd8(be066d20, f660cb18, ad0ff4a0, fa0156f0, 42a165e0, ad0ff3a8) 0xfa005fd8(be05f6d0, f660cb18, ad0ff530, fa0156f0, 1, ad0ff440) 0xfa005fd8(be05a1b8, b6, ad0ff600, fa0156f0, f620a1f8, ad0ff4c0) 0xfa005b10(be05a1b8, b6, 0, fa015270, b6130000, ad0ff588) 0xfa005b10(be023af0, b6, 0, fa015270, f5c045c0, ad0ff630) 0xfa005b10(be0d4ed0, f65f5b80, ad0ff7d8, fa015270, f6d80ae8, ad0ff6c8) 0xfa00612c(be0ab2f0, f65f5b80, ad0ff7e0, fa0156f0, f6560da8, ad0ff778) 0xfa00612c(be0b84d0, b6, ad0ff8f8, fa0156f0, 0, ad0ff810) 0xfa005c64(be0b84d0, b6, ad0ff900, fa015270, f6560da8, ad0ff898) 0xfa005c64(be0af510, f5c1e740, ad0ffa24, fa015270, fa013848, ad0ff930) 0xfa00612c(be0ab2f0, b7, ad0ffaac, fa0156f0, 0, ad0ff9c0) 0xfa005c64(be0ab2f0, f5c1e740, ad0ffb2c, fa015430, 0, ad0ffa48) 0xfa00612c(b5d4ea98, f5c1e740, ad0ffba4, fa0156f0, 0, ad0ffad0) 0xfa00612c(ad0ffba8, 0, 0, fa0156f0, 3349f0, ad0ffb48) 0xfa000118(ad0ffc30, ad0ffe98, a, f5c1efd8, fa00aae0, ad0ffdb8) libjvm.so`__1cJJavaCallsLcall_helper6FpnJJavaValue_pnMmethodHandle_pnRJavaCallAr
    guments_pnGThread__v_+0x274(ad0ffe90, ad0ffcf8, ad0ffdb0, aeed28, aeed28,
    ad0ffd08)
    libjvm.so`__1cJJavaCallsMcall_virtual6FpnJJavaValue_nLKlassHandle_nMsymbolHandle
    _4pnRJavaCallArguments_pnGThread__v_+0x164(feff0000, ae82b8, ad0ffda4, ad0ffda0 , ad0ffdb0, aeed28) libjvm.so`__1cJJavaCallsMcall_virtual6FpnJJavaValue_nGHandle_nLKlassHandle_nMsym
    bolHandle_5pnGThread__v_+0x60(ad0ffe90, ad0ffe8c, ad0ffe84, ad0ffe7c, ad0ffe74,
    aeed28)
    libjvm.so`__1cMthread_entry6FpnKJavaThread_pnGThread__v_+0x128(aeed28, aeed28, af6758, ae82b8, 319508, fecd6a5c) libjvm.so`__1cKJavaThreadDrun6M_v_+0x288(aeed28, ffffffe2, ff00f808, ffff8000, 0 , 0) libjvm.so`_start+0x134(aeed28, 0, 0, 0, 0, 0) libthread.so.1`_lwp_start(0, 0, 0, 0, 0, 0)

    Hi there
    Not sure which jdk you are using but I am guessing you are using native code?
    libkernel32.so
    See http://java.sun.com/j2se/1.4.2/docs/guide/vm/signal-chaining.html
    Start your application this way, this should solve your problem.
    export LD_PRELOAD=<libjvm.so dir>/libjsig.so; java_application (ksh)
    setenv LD_PRELOAD <libjvm.so dir>/libjsig.so; java_application (csh)
    Also, even if u are using 1.3.1, u can get the libjsig.so from 1.4.2 and do the same.
    Hope this helps.

  • Java crashes help please

    Hi I'm looking at a ADSL speed test website that used a java applet.
    I have the latest java release and I'm running XP Pro SP2
    Jave crashes and IE closes and i then have a file appear on my desktop with the following text:
    Any help would be great. Thanks
    # An unexpected error has been detected by Java Runtime Environment:
    # EXCEPTION_FLT_STACK_CHECK (0xc0000092) at pc=0x0804d0a9, pid=404, tid=3288
    # Java VM: Java HotSpot(TM) Client VM (1.6.0_02-b06 mixed mode)
    # Problematic frame:
    # v ~RuntimeStub::resolve_virtual_call
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    --------------- T H R E A D ---------------
    Current thread (0x03ff9c00): JavaThread "main" [_thread_in_Java, id=3288]
    siginfo: ExceptionCode=0xc0000092, ExceptionInformation=0x00000000 0x01b73ac4
    Registers:
    EAX=0xffffffff, EBX=0x000008c5, ECX=0x30317f18, EDX=0x3031a8d8
    ESP=0x01b73a58, EBP=0x01b73b68, ESI=0x30317f18, EDI=0x000008c5
    EIP=0x0804d0a9, EFLAGS=0x00010212
    Top of Stack: (sp=0x01b73a58)
    0x01b73a58: ffff1372 ffff4022 ffffffff 07f95df7
    0x01b73a68: 011c001b 01b73b40 ffff0023 f72053d1
    0x01b73a78: 884440e0 4b08f50c 48a8e6b0 00cce6b0
    0x01b73a88: 804f4049 00000080 00000002 00020000
    0x01b73a98: 00000000 b714e794 b714e788 0000f50c
    0x01b73aa8: 5be00000 4005c805 00000000 80000000
    0x01b73ab8: 00004002 00000000 3ffd8000 01b73b0c
    0x01b73ac8: 01b73b24 00000000 01b73b1c 00000000
    Instructions: (pc=0x0804d0a9)
    0x0804d099: 00 00 83 ec 6c dd 34 24 9b dd 24 24 dd 5c 24 6c
    0x0804d0a9: dd 5c 24 74 dd 5c 24 7c dd 9c 24 84 00 00 00 dd
    Stack: [0x01a80000,0x01b80000), sp=0x01b73a58, free space=974k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    v ~RuntimeStub::resolve_virtual_call
    J java.util.Properties$LineReader.readLine()I
    j java.util.Properties.load0(Ljava/util/Properties$LineReader;)V+7
    j java.util.Properties.load(Ljava/io/InputStream;)V+10
    j java.util.logging.LogManager.readConfiguration(Ljava/io/InputStream;)V+13
    j java.util.logging.LogManager.readConfiguration()V+181
    j java.util.logging.LogManager$2.run()Ljava/lang/Object;+4
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x0a10f400 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=3496]
    0x0a10a400 JavaThread "CompilerThread0" daemon [_thread_blocked, id=1080]
    0x0a109400 JavaThread "Attach Listener" daemon [_thread_blocked, id=2996]
    0x0a108400 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=588]
    0x0a0fa800 JavaThread "Finalizer" daemon [_thread_blocked, id=3044]
    0x0a0f6400 JavaThread "Reference Handler" daemon [_thread_blocked, id=1452]
    =>0x03ff9c00 JavaThread "main" [_thread_in_Java, id=3288]
    Other Threads:
    0x0a0f1800 VMThread [id=2560]
    0x0a110800 WatcherThread [id=384]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 960K, used 196K [0x302f0000, 0x303f0000, 0x30a50000)
    eden
    [error occurred during error reporting, step 190, id 0xc0000092]
    Dynamic libraries:
    0x00400000 - 0x0049b000      C:\Program Files\Internet Explorer\iexplore.exe
    0x7c900000 - 0x7c9b0000      C:\WINDOWS\system32\ntdll.dll
    0x7c800000 - 0x7c8f5000      C:\WINDOWS\system32\kernel32.dll
    0x77dd0000 - 0x77e6b000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77e70000 - 0x77f01000      C:\WINDOWS\system32\RPCRT4.dll
    0x77f10000 - 0x77f57000      C:\WINDOWS\system32\GDI32.dll
    0x7e410000 - 0x7e4a0000      C:\WINDOWS\system32\USER32.dll
    0x77c10000 - 0x77c68000      C:\WINDOWS\system32\msvcrt.dll
    0x77f60000 - 0x77fd6000      C:\WINDOWS\system32\SHLWAPI.dll
    0x7c9c0000 - 0x7d1d5000      C:\WINDOWS\system32\SHELL32.dll
    0x774e0000 - 0x7761d000      C:\WINDOWS\system32\ole32.dll
    0x42cf0000 - 0x42e14000      C:\WINDOWS\system32\urlmon.dll
    0x77120000 - 0x771ab000      C:\WINDOWS\system32\OLEAUT32.dll
    0x42990000 - 0x429d5000      C:\WINDOWS\system32\iertutil.dll
    0x77c00000 - 0x77c08000      C:\WINDOWS\system32\VERSION.dll
    0x76390000 - 0x763ad000      C:\WINDOWS\system32\IMM32.DLL
    0x629c0000 - 0x629c9000      C:\WINDOWS\system32\LPK.DLL
    0x74d90000 - 0x74dfb000      C:\WINDOWS\system32\USP10.dll
    0x10000000 - 0x10007000      C:\WINDOWS\system32\ASAPHook.dll
    0x773d0000 - 0x774d3000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2982_x-ww_ac3f9c03\comctl32.dll
    0x5d090000 - 0x5d12a000      C:\WINDOWS\system32\comctl32.dll
    0x42ef0000 - 0x434bb000      C:\WINDOWS\system32\IEFRAME.dll
    0x76bf0000 - 0x76bfb000      C:\WINDOWS\system32\PSAPI.DLL
    0x5ad70000 - 0x5ada8000      C:\WINDOWS\system32\UxTheme.dll
    0x74720000 - 0x7476b000      C:\WINDOWS\system32\MSCTF.dll
    0x20000000 - 0x202c5000      C:\WINDOWS\system32\xpsp2res.dll
    0x755c0000 - 0x755ee000      C:\WINDOWS\system32\msctfime.ime
    0x5dff0000 - 0x5e01f000      C:\WINDOWS\system32\IEUI.dll
    0x76380000 - 0x76385000      C:\WINDOWS\system32\MSIMG32.dll
    0x4ec50000 - 0x4edf3000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.2600.2180_x-ww_522f9f82\gdiplus.dll
    0x47060000 - 0x47081000      C:\WINDOWS\system32\xmllite.dll
    0x77b40000 - 0x77b62000      C:\WINDOWS\system32\apphelp.dll
    0x76fd0000 - 0x7704f000      C:\WINDOWS\system32\CLBCATQ.DLL
    0x77050000 - 0x77115000      C:\WINDOWS\system32\COMRes.dll
    0x746f0000 - 0x7471a000      C:\WINDOWS\system32\msimtf.dll
    0x77fe0000 - 0x77ff1000      C:\WINDOWS\system32\Secur32.dll
    0x605d0000 - 0x605d9000      C:\WINDOWS\system32\mslbui.dll
    0x77a20000 - 0x77a74000      C:\WINDOWS\System32\cscui.dll
    0x76600000 - 0x7661d000      C:\WINDOWS\System32\CSCDLL.dll
    0x77920000 - 0x77a13000      C:\WINDOWS\system32\SETUPAPI.dll
    0x6bd10000 - 0x6bd20000      C:\PROGRA~1\MICROS~2\Office12\msohevi.dll
    0x78130000 - 0x781cb000      C:\WINDOWS\WinSxS\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.163_x-ww_681e29fb\MSVCR80.dll
    0x5c2c0000 - 0x5c300000      C:\WINDOWS\ime\sptip.dll
    0x74c80000 - 0x74cac000      C:\WINDOWS\system32\OLEACC.dll
    0x76080000 - 0x760e5000      C:\WINDOWS\system32\MSVCP60.dll
    0x01480000 - 0x01491000      C:\WINDOWS\IME\SPGRMR.DLL
    0x7d1e0000 - 0x7d49e000      C:\WINDOWS\system32\msi.dll
    0x014a0000 - 0x014fb000      C:\Program Files\Common Files\Microsoft Shared\INK\SKCHUI.DLL
    0x61930000 - 0x6197a000      C:\Program Files\Internet Explorer\ieproxy.dll
    0x75e90000 - 0x75f40000      C:\WINDOWS\system32\SXS.DLL
    0x42c10000 - 0x42cdf000      C:\WINDOWS\system32\WININET.dll
    0x01e00000 - 0x01e09000      C:\WINDOWS\system32\Normaliz.dll
    0x75cf0000 - 0x75d81000      C:\WINDOWS\system32\MLANG.dll
    0x71ab0000 - 0x71ac7000      C:\WINDOWS\system32\ws2_32.dll
    0x71aa0000 - 0x71aa8000      C:\WINDOWS\system32\WS2HELP.dll
    0x02fb0000 - 0x0332f000      c:\program files\google\googletoolbar2.dll
    0x77a80000 - 0x77b14000      C:\WINDOWS\system32\CRYPT32.dll
    0x77b20000 - 0x77b32000      C:\WINDOWS\system32\MSASN1.dll
    0x76c90000 - 0x76cb8000      C:\WINDOWS\system32\imagehlp.dll
    0x76b40000 - 0x76b6d000      C:\WINDOWS\system32\WINMM.dll
    0x76c30000 - 0x76c5e000      C:\WINDOWS\system32\WINTRUST.dll
    0x71ad0000 - 0x71ad9000      C:\WINDOWS\system32\WSOCK32.dll
    0x74980000 - 0x74a93000      C:\WINDOWS\system32\msxml3.dll
    0x59a60000 - 0x59b01000      C:\WINDOWS\system32\DBGHELP.DLL
    0x5b860000 - 0x5b8b4000      C:\WINDOWS\system32\netapi32.dll
    0x708f0000 - 0x70903000      C:\WINDOWS\system32\asycfilt.dll
    0x76990000 - 0x769b5000      C:\WINDOWS\system32\ntshrui.dll
    0x76b20000 - 0x76b31000      C:\WINDOWS\system32\ATL.DLL
    0x769c0000 - 0x76a73000      C:\WINDOWS\system32\USERENV.dll
    0x76ee0000 - 0x76f1c000      C:\WINDOWS\system32\RASAPI32.dll
    0x76e90000 - 0x76ea2000      C:\WINDOWS\system32\rasman.dll
    0x76eb0000 - 0x76edf000      C:\WINDOWS\system32\TAPI32.dll
    0x76e80000 - 0x76e8e000      C:\WINDOWS\system32\rtutils.dll
    0x71b20000 - 0x71b32000      C:\WINDOWS\system32\MPR.dll
    0x75f60000 - 0x75f67000      C:\WINDOWS\System32\drprov.dll
    0x71c10000 - 0x71c1e000      C:\WINDOWS\System32\ntlanman.dll
    0x71cd0000 - 0x71ce7000      C:\WINDOWS\System32\NETUI0.dll
    0x71c90000 - 0x71cd0000      C:\WINDOWS\System32\NETUI1.dll
    0x71c80000 - 0x71c87000      C:\WINDOWS\System32\NETRAP.dll
    0x71bf0000 - 0x71c03000      C:\WINDOWS\System32\SAMLIB.dll
    0x77c70000 - 0x77c93000      C:\WINDOWS\system32\msv1_0.dll
    0x76d60000 - 0x76d79000      C:\WINDOWS\system32\iphlpapi.dll
    0x75f70000 - 0x75f79000      C:\WINDOWS\System32\davclnt.dll
    0x10930000 - 0x10979000      C:\WINDOWS\system32\PortableDeviceApi.dll
    0x73ba0000 - 0x73bb3000      C:\WINDOWS\system32\sti.dll
    0x74ae0000 - 0x74ae7000      C:\WINDOWS\system32\CFGMGR32.dll
    0x722b0000 - 0x722b5000      C:\WINDOWS\system32\sensapi.dll
    0x03f10000 - 0x03f20000      C:\Program Files\Common Files\Adobe\Acrobat\ActiveX\AcroIEHelper.dll
    0x03f30000 - 0x03f4f000      C:\WINDOWS\system32\dla\tfswshx.dll
    0x03f50000 - 0x03f5f000      C:\WINDOWS\system32\tfswapi.dll
    0x03f60000 - 0x03f9b000      C:\WINDOWS\system32\dla\tfswcres.dll
    0x6d7c0000 - 0x6d839000      C:\Program Files\Java\jre1.6.0_02\bin\ssv.dll
    0x7c340000 - 0x7c396000      C:\Program Files\Java\jre1.6.0_02\bin\MSVCR71.dll
    0x29500000 - 0x29551000      C:\Program Files\Common Files\Microsoft Shared\Windows Live\WindowsLiveLogin.dll
    0x0ffd0000 - 0x0fff8000      C:\WINDOWS\system32\rsaenh.dll
    0x27500000 - 0x275c9000      C:\Program Files\Common Files\Microsoft Shared\Windows Live\msidcrl40.dll
    0x75e60000 - 0x75e73000      C:\WINDOWS\system32\cryptnet.dll
    0x76f60000 - 0x76f8c000      C:\WINDOWS\system32\WLDAP32.dll
    0x4d4f0000 - 0x4d548000      C:\WINDOWS\system32\WINHTTP.dll
    0x04780000 - 0x04790000      C:\Program Files\HPQ\IAM\Bin\ItIeAddIN.dll
    0x04790000 - 0x047f9000      C:\Program Files\HPQ\IAM\Bin\ItMsg.dll
    0x7c000000 - 0x7c054000      C:\WINDOWS\system32\MSVCR70.dll
    0x71a50000 - 0x71a8f000      C:\WINDOWS\system32\mswsock.dll
    0x662b0000 - 0x66308000      C:\WINDOWS\system32\hnetcfg.dll
    0x71a90000 - 0x71a98000      C:\WINDOWS\System32\wshtcpip.dll
    0x71d40000 - 0x71d5c000      C:\WINDOWS\system32\actxprxy.dll
    0x76fc0000 - 0x76fc6000      C:\WINDOWS\system32\rasadhlp.dll
    0x76f20000 - 0x76f47000      C:\WINDOWS\system32\DNSAPI.dll
    0x76fb0000 - 0x76fb8000      C:\WINDOWS\System32\winrnr.dll
    0x435d0000 - 0x43941000      C:\WINDOWS\system32\mshtml.dll
    0x746c0000 - 0x746e9000      C:\WINDOWS\system32\msls31.dll
    0x43560000 - 0x435c0000      C:\WINDOWS\system32\ieapfltr.dll
    0x77690000 - 0x776b1000      C:\WINDOWS\system32\NTMARTA.DLL
    0x050a0000 - 0x050f7000      C:\Program Files\HPQ\IAM\Bin\ItSSO.dll
    0x040e0000 - 0x04103000      C:\Program Files\HPQ\IAM\Bin\ItVCL.dll
    0x04b00000 - 0x04b08000      C:\Program Files\HPQ\IAM\Bin\ItRpc.dll
    0x04b60000 - 0x04b69000      C:\Program Files\HPQ\IAM\Bin\ItClient.dll
    0x63380000 - 0x633f8000      c:\windows\system32\jscript.dll
    0x58760000 - 0x58792000      C:\WINDOWS\system32\iepeers.dll
    0x73000000 - 0x73026000      C:\WINDOWS\system32\WINSPOOL.DRV
    0x42b90000 - 0x42c07000      C:\WINDOWS\system32\mshtmled.dll
    0x1b000000 - 0x1b00c000      C:\WINDOWS\system32\ImgUtil.dll
    0x1b060000 - 0x1b06e000      C:\WINDOWS\system32\pngfilt.dll
    0x05800000 - 0x0581c000      C:\Program Files\HPQ\IAM\Bin\Aswallet.dll
    0x42aa0000 - 0x42b12000      C:\WINDOWS\system32\msfeeds.dll
    0x061d0000 - 0x0622b000      C:\Program Files\Common Files\Adobe\Acrobat\ActiveX\PDFShell.dll
    0x72d20000 - 0x72d29000      C:\WINDOWS\system32\wdmaud.drv
    0x72d10000 - 0x72d18000      C:\WINDOWS\system32\msacm32.drv
    VM Arguments:
    jvm_args: -Xbootclasspath/a:C:\PROGRA~1\Java\JRE16~2.0_0\lib\deploy.jar;C:\PROGRA~1\Java\JRE16~2.0_0\lib\plugin.jar -Xmx96m -Djavaplugin.maxHeapSize=96m -Xverify:remote -Djavaplugin.version=1.6.0_02 -Djavaplugin.nodotversion=160_02 -Dbrowser=sun.plugin -DtrustProxy=true -Dapplication.home=C:\PROGRA~1\Java\JRE16~2.0_0 -Djavaplugin.vm.options=-Djava.class.path=C:\PROGRA~1\Java\JRE16~2.0_0\classes -Xbootclasspath/a:C:\PROGRA~1\Java\JRE16~2.0_0\lib\deploy.jar;C:\PROGRA~1\Java\JRE16~2.0_0\lib\plugin.jar -Xmx96m -Djavaplugin.maxHeapSize=96m -Xverify:remote -Djavaplugin.version=1.6.0_02 -Djavaplugin.nodotversion=160_02 -Dbrowser=sun.plugin -DtrustProxy=true -Dapplication.home=C:\PROGRA~1\Java\JRE16~2.0_0
    java_command: <unknown>
    Launcher Type: generic
    Environment Variables:
    CLASSPATH=.;C:\Program Files\Java\jre1.5.0_06\lib\ext\QTJava.zip
    PATH=C:\PROGRA~1\Java\JRE16~2.0_0\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\ATI Technologies\ATI Control Panel;C:\Program Files\HPQ\IAM\bin;C:\Program Files\QuickTime\QTSystem\;.
    USERNAME=hrowinski
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 6 Model 13 Stepping 8, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows XP Build 2600 Service Pack 2
    CPU:total 1 (1 cores per cpu, 1 threads per core) family 6 model 13 stepping 8, cmov, cx8, fxsr, mmx, sse, sse2
    Memory: 4k page, physical 1572208k(878116k free), swap 2204864k(1714828k free)
    vm_info: Java HotSpot(TM) Client VM (1.6.0_02-b06) for windows-x86, built on Jul 12 2007 01:16:14 by "java_re" with unknown MS VC++:1310

    Thanks for the help so far, but I still have a problem with my Merge Sort. The sort uses up all the program's memory and throws an "OutOfMemoryError".
    Here is the Merge Sort:
    //This is the merge sort and its methods!!!
         public void mergeSort()
              if(line.length<=1)
                   return;
                   int[] half1=new int[line.length/2];
                   int[] half2=new int[line.length-half1.length];
                   System.arraycopy(line, 0, half1, 0, half1.length);
                   System.arraycopy(line, half1.length, half2, 0, half2.length);
                   Sort s1=new Sort(half1);
                   Sort s2=new Sort(half2);
                   s1.mergeSort();
                   s2.mergeSort();
                   merge(half1, half2);
         public void merge(int[] a, int[] b)
              int first=0;
              int second=0;
              int c=0;
              while((first<a.length)&&(second<b.length))
                   if(a[first]<b[second])
                        line[c]=a[first];
                        first++;
                   else
                        line[c]= b[second];
                        second++;
                   c++;
              System.arraycopy(a, first, line, c, a.length-first);
              System.arraycopy(b, second, line, c, b.length-second);
         }

  • Question about Java Crashes

    I have installed MAC OS 10.6.8 and Adobe Reader 11.0.06 and I can't open pdf files because the Java crashes. The Java is supplied on the OS.

    How can I determine the systems default backlog?You can't. There is no API for that even at the C level.
    Can some lines of Java code reveal itNo.
    Or is it up to the Operating System (we use Redhat Linux)?Yes. Linux provides a large default. It seems to be at least 50 on most platforms. This is not something you should be worrying about.

  • Java versus javac classpath

    hi everyone:
    this is a bit embarassing, as I have been using java for some time, but I recently came across a classpath conceptual difficulty.
    My understanding was that 'javac' uses classpath to find the path to any classes referenced in a target for compilation. However, I couldn't come up with any concrete rationale for using an additional classpath for 'java', the JVM command, when developing your own applications (I can see its importance for third party classes).
    Doesn't javac encode the classpath passed to it in the compiled class file itself? (I figured this because even if I do not specify a classpath to the 'java', the program still executes fine). If this is true, then the only way I see the 'java' classpath being useful is if you were to change around the location of the class files after compilation.
    Any thoughts would be greatly appreciated.

    Btw, there is no distiction between java and javac
    classpaths. They're both the classpath.only difference i see there could be, is that, for
    javac you tell the path to your .java file that
    need's to be compiled, and for java you tell the name
    of class whose main() method it should run (or you
    tell which .jar file to execute)That's not relevant here. Classpath is used the same way for both of them. Classpath has nothing to do with finding a .java file to compile.
    The only difference, I think, is that I think by default, the directory holding the package root of any .java file given as an arg to javac is implicitly added to the classpath. I'm not sure about that though.
    >
    so in some cases you would need to include "." in
    your classpath for execution, but would not need to
    include it for compilation.
    just my 2 cents

  • 3 regular expression and java crash WHY?? / HOW to SOLVE IT?

    Hi, i hava problem on my program there is 3 regex after another.
    The JAVA crash down idona know why
    want to solve it how i think i have to clear the regex so they not be in the memory after proccessing
    help needed >> Please

    asfdal-qsa wrote:
    contents = contents.replaceAll("(?i)(<\\s*\\w*[^>]*?>((?:.*?\\s*?)+)<\\s*?/\\s*?\\w*\\s*?>)", " ");if i use replaceAll or not it is the same output
    Java crash down and give me this
    Exception in thread "main" java.lang.StackOverflowError
    at java.util.regex.Pattern$Curly.match(Pattern.java:3746)
    at java.util.regex.Pattern$GroupHead.match(Pattern.java:4168)
    at java.util.regex.Pattern$Loop.match(Pattern.java:4295)
    at java.util.regex.Pattern$GroupTail.match(Pattern.java:4227)
    at java.util.regex.Pattern$Curly.match1(Pattern.java:3797)
    at java.util.regex.Pattern$Curly.match(Pattern.java:3746)
    at java.util.regex.Pattern$Curly.match1(Pattern.java:3797)
    at java.util.regex.Pattern$Curly.match(Pattern.java:3746)
    and still continue
    Edited by: asfdal-qsa on Apr 12, 2009 7:14 AMWhat's wrong with my suggestion:
    "<[^<>]++>"?

  • Java crash when clicking Bookmarks Unsorted Bookmarks & APC PowerChute Business Edition in a tab

    So, as the question states clicked on Unsorted Bookmarks (after adding a bunch of new bookmarks), while in a tab APC PowerChute Business Edition - Quick Status was running in the background, its a dashboard that refreshes frequently displaying status of APC connected to a server.
    In this context Java froze the computer, mouse moved jerkily for 10-15 seconds then froze as well. After waiting a few minutes I was forced to hard boot the laptop. After logging back in, there was a Java error log called hs_err_pid5280.log on my desktop. Here is half of the log:
    # A fatal error has been detected by the Java Runtime Environment:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x00000000, pid=5280, tid=2792
    # JRE version: 6.0_29-b11
    # Java VM: Java HotSpot(TM) Client VM (20.4-b02 mixed mode, sharing windows-x86 )
    # Problematic frame:
    # C 0x00000000
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    # The crash happened outside the Java Virtual Machine in native code.
    # See problematic frame for where to report the bug.
    --------------- T H R E A D ---------------
    Current thread (0x032df400): JavaThread "AWT-Windows" daemon [_thread_in_native, id=2792, stack(0x00960000,0x00a60000)]
    siginfo: ExceptionCode=0xc0000005, reading address 0x00000000
    Registers:
    EAX=0x032f0bb0, EBX=0x00000001, ECX=0x03353af8, EDX=0x00000004
    ESP=0x00a5fae0, EBP=0x00a5fb0c, ESI=0x032df528, EDI=0x03353af8
    EIP=0x00000000, EFLAGS=0x00010293
    Top of Stack: (sp=0x00a5fae0)
    0x00a5fae0: 6d09ccc0 00a5fb74 6d09c780 00000000
    0x00a5faf0: 00000000 00000001 032df528 00a5fae4
    0x00a5fb00: 00a5fb90 6d0c0628 00000001 00a5fb38
    0x00a5fb10: 7e418734 002106fe 0000981a 03353af8
    0x00a5fb20: 00000000 6d09c780 dcbaabcd 00000000
    0x00a5fb30: 00a5fb74 6d09c780 00a5fba0 7e418816
    0x00a5fb40: 6d09c780 002106fe 0000981a 03353af8
    0x00a5fb50: 00000000 00a5fc34 00a5fc2c 00713a90
    Instructions: (pc=0x00000000)
    0xffffffe0:
    Register to memory mapping:
    EAX=0x032f0bb0 is an unknown value
    EBX=0x00000001 is an unknown value
    ECX=0x03353af8 is an unknown value
    EDX=0x00000004 is an unknown value
    ESP=0x00a5fae0 is pointing into the stack for thread: 0x032df400
    EBP=0x00a5fb0c is pointing into the stack for thread: 0x032df400
    ESI=0x032df528 is an unknown value
    EDI=0x03353af8 is an unknown value
    Stack: [0x00960000,0x00a60000], sp=0x00a5fae0, free space=1022k
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j sun.awt.windows.WToolkit.eventLoop()V+0
    j sun.awt.windows.WToolkit.run()V+52
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x0337b000 JavaThread "Thread-20" [_thread_blocked, id=856, stack(0x040d0000,0x04120000)]
    0x0337a000 JavaThread "Thread-19" [_thread_blocked, id=5972, stack(0x04080000,0x040d0000)]
    0x03367800 JavaThread "Image Fetcher 3" daemon [_thread_blocked, id=4904, stack(0x03fb0000,0x04000000)]
    0x03363000 JavaThread "Image Fetcher 2" daemon [_thread_blocked, id=6124, stack(0x03f60000,0x03fb0000)]
    0x03362c00 JavaThread "Image Fetcher 1" daemon [_thread_blocked, id=3208, stack(0x03b80000,0x03bd0000)]
    0x03346400 JavaThread "Image Fetcher 0" daemon [_thread_blocked, id=4756, stack(0x03b30000,0x03b80000)]
    0x03361400 JavaThread "Thread-18" [_thread_in_native, id=6100, stack(0x03f10000,0x03f60000)]
    0x03354000 JavaThread "Thread-17" [_thread_blocked, id=3100, stack(0x03ec0000,0x03f10000)]
    0x03360800 JavaThread "thread applet-GenericList.class-4" [_thread_blocked, id=6036, stack(0x03dd0000,0x03e20000)]
    0x03349800 JavaThread "thread applet-PortGraph.class-3" [_thread_blocked, id=5784, stack(0x03d30000,0x03d80000)]
    0x0334b000 JavaThread "Applet 4 LiveConnect Worker Thread" [_thread_blocked, id=4456, stack(0x03d80000,0x03dd0000)]
    0x03351800 JavaThread "Applet 3 LiveConnect Worker Thread" [_thread_blocked, id=2056, stack(0x03ce0000,0x03d30000)]
    0x03346000 JavaThread "D3D Screen Updater" daemon [_thread_blocked, id=5676, stack(0x036f0000,0x03740000)]
    0x03341c00 JavaThread "thread applet-PageSelector.class-2" [_thread_blocked, id=3552, stack(0x03ae0000,0x03b30000)]
    0x0335cc00 JavaThread "thread applet-PageSelector.class-1" [_thread_in_native, id=440, stack(0x03a40000,0x03a90000)]
    0x03321400 JavaThread "JVM[id=0]-Heartbeat" daemon [_thread_blocked, id=4868, stack(0x039a0000,0x039f0000)]
    0x03325c00 JavaThread "AWT-EventQueue-2" [_thread_blocked, id=5948, stack(0x03a90000,0x03ae0000)]
    0x03323400 JavaThread "Applet 2 LiveConnect Worker Thread" [_thread_blocked, id=5428, stack(0x039f0000,0x03a40000)]
    0x0331b000 JavaThread "Browser Side Object Cleanup Thread" [_thread_blocked, id=4484, stack(0x03950000,0x039a0000)]
    0x03314c00 JavaThread "Windows Tray Icon Thread" [_thread_in_native, id=5792, stack(0x037e0000,0x03830000)]
    0x03313000 JavaThread "CacheCleanUpThread" daemon [_thread_blocked, id=4080, stack(0x03790000,0x037e0000)]
    0x032e9c00 JavaThread "CacheMemoryCleanUpThread" daemon [_thread_blocked, id=1668, stack(0x03740000,0x03790000)]
    0x032e6000 JavaThread "SysExecutionTheadCreator" daemon [_thread_blocked, id=5856, stack(0x03500000,0x03550000)]
    0x032e3400 JavaThread "AWT-EventQueue-0" [_thread_blocked, id=3156, stack(0x036a0000,0x036f0000)]
    =>0x032df400 JavaThread "AWT-Windows" daemon [_thread_in_native, id=2792, stack(0x00960000,0x00a60000)]
    0x032ddc00 JavaThread "AWT-Shutdown" [_thread_blocked, id=4216, stack(0x03600000,0x03650000)]
    0x032dc800 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=6040, stack(0x035b0000,0x03600000)]
    0x032d6000 JavaThread "Java Plug-In Pipe Worker Thread (Client-Side)" daemon [_thread_in_native, id=5432, stack(0x03560000,0x035b0000)]
    0x02def400 JavaThread "Timer-0" [_thread_blocked, id=3812, stack(0x034b0000,0x03500000)]
    0x02db0800 JavaThread "traceMsgQueueThread" daemon [_thread_blocked, id=4256, stack(0x03220000,0x03270000)]
    0x02d59800 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=5896, stack(0x02fe0000,0x03030000)]
    0x02d56800 JavaThread "C1 CompilerThread0" daemon [_thread_blocked, id=4436, stack(0x02f90000,0x02fe0000)]
    0x02d51800 JavaThread "Attach Listener" daemon [_thread_blocked, id=5084, stack(0x02f40000,0x02f90000)]
    0x02d50400 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=492, stack(0x02ef0000,0x02f40000)]
    0x02d49800 JavaThread "Finalizer" daemon [_thread_blocked, id=3380, stack(0x02ea0000,0x02ef0000)]
    0x02d48000 JavaThread "Reference Handler" daemon [_thread_blocked, id=5520, stack(0x02e50000,0x02ea0000)]
    0x00888000 JavaThread "main" [_thread_blocked, id=3112, stack(0x00910000,0x00960000)]
    Other Threads:
    0x02d0bc00 VMThread [stack: 0x02e00000,0x02e50000] [id=1112]
    0x02d64400 WatcherThread [stack: 0x03030000,0x03080000] [id=3352]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 4928K, used 790K [0x22990000, 0x22ee0000, 0x27ee0000)
    eden space 4416K, 16% used [0x22990000, 0x22a454d0, 0x22de0000)
    from space 512K, 12% used [0x22de0000, 0x22df0610, 0x22e60000)
    to space 512K, 0% used [0x22e60000, 0x22e60000, 0x22ee0000)
    tenured generation total 10944K, used 2392K [0x27ee0000, 0x28990000, 0x32990000)
    the space 10944K, 21% used [0x27ee0000, 0x281361e8, 0x28136200, 0x28990000)
    compacting perm gen total 12288K, used 2521K [0x32990000, 0x33590000, 0x36990000)
    the space 12288K, 20% used [0x32990000, 0x32c065d8, 0x32c06600, 0x33590000)
    ro space 10240K, 51% used [0x36990000, 0x36ebd0b8, 0x36ebd200, 0x37390000)
    rw space 12288K, 54% used [0x37390000, 0x37a29570, 0x37a29600, 0x37f90000)
    Code Cache [0x00aa0000, 0x00ba8000, 0x02aa0000)
    total_blobs=545 nmethods=326 adapters=155 free_code_cache=32478144 largest_free_block=0

    I've also posted this to Java / Oracle.

  • BPEL server and java crashes while accessing a deployed process in console

    Hi,
    I am running BPEL developer version on my local machine (win xp ). If I try to run a deployed process from my BPEL console by clicking on the process name, an Unexpected error dialog box pops up saying Java has encountered an unexpected error. After that the broser as well as the BPEL server window crashes. I have tried both IE and netscape.
    Can someone help as this is completely preventing me to test my deployed processes.
    Thanks

    Naah, I said, that will never work.  But to my shock and (pleasant) surprise, it does!  Here is a snippet of a little routine I cobbled together using LabVIEW for both the Writer and the Reader.
    The Writer is on top.  It creates a Temp.txt file on my Temp directory, deletes it if it is already there, then opens it for writing.  There's a boolean "Done" flag that tells me when the Writer finishes, so I clear it before entering the Writing Loop.  Here, every half-second, I write the sequential numbers 0 .. 9, with a New Line to create a Text File of Lines.  When I'm finished, I close the file.
    Below this is the Reader Loop, designed to start after the Writer Loop has opened (and created) the file.  Here we open the same file in Read-Only mode.  The Reader Loop also goes 10 times (I could have built in a Stop condition, but this is only a Proof-of-Concept).  The loop is initialized with the current File Position (0) in a Shift Register.  The inner While Loop is a "Wait for Data to Appear", a loop which checks 10 times a second to see if the File Position has changed, exiting when it does (meaning the Writer has Written Something).  It then reads a line from the File (the Read Text function has its "Read Lines" property set) and displays it.
    When you run this, you will see the Reader's output, Line, count up, 0 .. 9, and then the program stops with no errors.  What fun!
    Bob Schor

  • Who can give me a suggestion about java crash with Internal Error ID?

    I running my server performance test, but after 7 hours, the jvm crashed and give a java internal error ID with "*53484152454432554E54494D450E43505001A8*",
    and I can not query any valuable information from Google by this internal Error ID. Who can give me a light?
    I have run the performance test on the other machine with the same service logic, the other environment not crash, It's very strange!
    h5. some content of The hs_err_xxx.log file:
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # Internal Error (53484152454432554E54494D450E43505001A8), pid=16908, tid=1060293520
    # Java VM: Java HotSpot(TM) Server VM (1.5.0_19-b02 mixed mode)
    --------------- T H R E A D ---------------
    Current thread (0x425782e8): JavaThread "11d1def534ea1be0:656f6049:124caa54ac8:49c0,EventTypeID[com.telware.protocol.cid.eve
    nt.CIDContinueEvent#telware#1.0], #14" [_thread_in_Java, id=17068]
    Stack: [0x3f2ac000,0x3f32d000), sp=0x3f32b2a0, free space=508k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    V [libjvm.so+0x516863]
    V [libjvm.so+0x1ca6cc]
    V [libjvm.so+0x4a3c5f]
    V [libjvm.so+0x43ceb6]
    V [libjvm.so+0x43a0c4]
    Other Threads:
    0x08e0d850 VMThread [id=16914]
    0x08e20e20 WatcherThread [id=16923]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    h6. Heap
    par new generation total 98304K, used 36214K [0x49360000, 0x51360000, 0x51360000)
    eden space 65536K, 29% used [0x49360000, 0x4a667c10, 0x4d360000)
    from space 32768K, 51% used [0x4d360000, 0x4e3b5e58, 0x4f360000)
    to space 32768K, 0% used [0x4f360000, 0x4f360000, 0x51360000)
    concurrent mark-sweep generation total 1507328K, used 974545K [0x51360000, 0xad360000, 0xad360000)
    concurrent-mark-sweep perm gen total 40152K, used 24021K [0xad360000, 0xafa96000, 0xb1360000)
    h6. VM Arguments:
    jvm_args: -Dfile.encoding=utf-8 -verbose:gc -XX:+PrintGCDetails -XX:+PrintGCTimeStamps -XX:+PrintGCApplicationConcurrentTime
    -XX:+PrintGCApplicationStoppedTime -Xloggc:/home/sepcs/sep/oper/gc.log -Xms1600m -Xmx1600m -Xmn128m -XX:SurvivorRatio=2 -XX:+
    UseFastAccessorMethods -XX:-UseFastEmptyMethods -XX:+UseFastJNIAccessors -XX:ParallelGCThreads=2 -XX:+UseConcMarkSweepGC -XX:
    UseParNewGC -XX:CMSFullGCsBeforeCompaction=1 -XX:GCTimeRatio=19 -Xnoclassgc -XX:DisableExplicitGC -XX:CMSInitiatingOccupanc
    yFraction=70 -XX:+UseCMSCompactAtFullCollection -XX:+CMSParallelRemarkEnabled -Dsep.home.dir=/home/sepcs/sep
    java_command: com.telware.sep.system.SysAdmin -r -gc
    Launcher Type: SUN_STANDARD
    h6. Environment Variables:
    JAVA_HOME=/usr/jdk/jdk1.5.0_19
    PATH=/home/sepcs/sep/bin::/usr/jdk/jdk1.5.0_19/bin:/usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin:/usr/X11R6/bin
    LD_LIBRARY_PATH=/usr/jdk/jdk1.5.0_19/jre/lib/i386/server:/usr/jdk/jdk1.5.0_19/jre/lib/i386:/usr/jdk/jdk1.5.0_19/jre/../lib/i3
    86
    SHELL=/bin/csh
    DISPLAY=localhost:10.0
    HOSTTYPE=i386-linux
    OSTYPE=linux
    MACHTYPE=i386
    --------------- S Y S T E M ---------------
    OS:Red Hat Enterprise Linux Server release 5.1 (Tikanga)
    uname:Linux 2.6.18-53.el5 #1 SMP Wed Oct 10 16:34:02 EDT 2007 i686
    libc:glibc 2.5 NPTL 2.5
    rlimit: STACK 10240k, CORE infinity, NPROC 31726, NOFILE 1024, AS infinity
    load average:2.05 2.35 2.23
    CPU:total 2 (cores per cpu 2, threads per core 1) family 15 model 6 stepping 5, cmov, cx8, fxsr, mmx, sse, sse2, sse3
    Memory: 4k page, physical 2009524k(54132k free), swap 1049k(1048k free)
    vm_info: Java HotSpot(TM) Server VM (1.5.0_19-b02) for linux-x86, built on May 4 2009 01:43:34 by java_re with gcc 3.2.1-7a
    (J2SE release)
    time: Sat Nov 7 02:44:28 2009

    Thank you very much first.
    I have noted that the link [t-739313] but I can not found any valuable info for my exception :(
    Yesterday night this crash has been rised again after my server running 1hours, I have analysis the core file, it's stack like this:
    {color:#008080}(gdb) bt
    #0 0xb7f4e402 in __kernel_vsyscall ()
    #1 0x00488c10 in raise () from /lib/libc.so.6
    #2 0x0048a521 in abort () from /lib/libc.so.6
    #3 0xb7990f75 in os::abort () from /usr/jdk/jdk1.5.0_19/jre/lib/i386/server/libjvm.so
    #4 0xb7a6f914 in VMError::report_and_die () from /usr/jdk/jdk1.5.0_19/jre/lib/i386/server/libjvm.so
    #5 0xb77236cc in report_fatal () from /usr/jdk/jdk1.5.0_19/jre/lib/i386/server/libjvm.so
    #6 0xb79fcc5f in SharedRuntime::continuation_for_implicit_exception ()
    from /usr/jdk/jdk1.5.0_19/jre/lib/i386/server/libjvm.so
    #7 0xb7995eb6 in JVM_handle_linux_signal () from /usr/jdk/jdk1.5.0_19/jre/lib/i386/server/libjvm.so
    #8 0xb79930c4 in signalHandler () from /usr/jdk/jdk1.5.0_19/jre/lib/i386/server/libjvm.so
    #9 <signal handler called>
    #10 0x0960527c in ?? ()
    #11 0x429f2160 in ?? ()
    #12 0x429f2158 in ?? ()
    #13 0x4cb72e48 in ?? ()
    #14 0x4cb72f28 in ?? ()
    #15 0x4cb72fe8 in ?? ()
    #16 0x00000000 in ?? (){color}
    I have print the stack from the core file, I found the crashed thread's state which indicted by hs_err_xxx.log is IN_JAVA and no stack information.
    {color:#008080}Thread 12536: (state = IN_JAVA){color}
    (no stack info.)
    {color:#008080}{color:#000000}And from the gc.log, I found that the crash occured in the CMS phase, the last gc log is :
    {color}5814.574: [GC [1 {color:#0000ff}CMS-initial-mark{color}: 829142K(1507328K)] 839697K(1622016K), 0.0281480 secs]
    Total time for which application threads were stopped: 0.0284280 seconds
    5814.602: [{color:#0000ff}CMS-concurrent-mark-start{color}]
    Application time: 1.7093670 seconds
    5816.312: [GC 5816.312: [ParNew: 108858K->8866K(114688K), 0.1133760 secs] 938001K->842222K(1622016K), 0.1135920 secs]
    Total time for which application threads were stopped: 0.1141250 seconds
    Application time: 1.4597160 seconds
    5817.886: [GC 5817.886: [ParNew: 107170K->8372K(114688K), 0.0900130 secs] 940526K->844407K(1622016K), 0.0902690 secs]
    Total time for which application threads were stopped: 0.0907340 seconds
    Application time: 1.4513060 seconds
    5819.428: [GC 5819.428: [ParNew: 106676K->8189K(114688K), 0.0871610 secs] 942711K->846695K(1622016K), 0.0873750 secs]
    Total time for which application threads were stopped: 0.0878680 seconds
    {color:#000000}All above is my found, but I am a newbie in JVM crash, so anybody can help me ?
    and I am very interesting in the Internal Error ID ({color}{color}{color:#ff0000}*53484152454432554E54494D450E43505001A8*{color}{color:#008080}{color:#000000}), I think this ID hide a lot of valuable information for SUN JDK developer, who can interpret it? Thanks very much!
    {color}{color}

  • Java crashes on startup (Java V6 U7)

    - Windows XP Professional, upgraded to SP 3.
    - FireFox: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.2) Gecko/2008091620 Firefox/3.0.2
    - Explorer: 7.0.5730.13
    This is a relatively clean install of XP (reloaded two weeks ago). I've just gotten around to downloading Java.
    Whenever I go to any pages that use Java, the browser (both IE and FireFox) crashes out without any error notification whatsoever. No notification in the System Events. I turned off all plug-ins in FireFox, and still see the same thing.
    I cannot even run the Java Control Panel from Windows Control Panel. It crashes out on startup with no messages.
    I have Windows Visual Studio 2005 installed. I don't know if it's dependent on one version of the MSVCRT or another.
    I also tried with Java V6 Update 6 and got the same problems. I think I was running V5 before the reinstall.
    Any other ideas?
    - nan0meter

    Maya 8.0 installs itself as the first path on your system path. It has a different version of the QT DLL.
    Once I moved Maya to the last entry in the path, everything works fine.
    nan0meter

  • Java Crashing Programs

    I have a problem with running Java on my computer. Whenever I try to run an applet it crashes the program. Appletviewer shows a dialog box saying it wont run. I have tried this with the most elementary prewritten apps like "HelloWorld". I can execute java applications from the command prompt fine. I am running Windows 98. Whats the prob?

    http://forum.java.sun.com/thread.jsp?forum=31&thread=362421

  • Is it possible to call the java compiler javac from runtime

    Hi, can someone tell me if it is possible to call javac from runtime. I need to do this because the class I need to compile must be filled with some data given by the user. I plan to write the class code in a file, let the user write some code lines at runtime, add this lines to the file and then call javac in order to compile the file and check if the user wrote his lines properly. I wonder if this makes sense, thanks for reading this and for your help.

    You can try using the exec method in the class java.lang.Runtime, but here are some traps to watch out for when using it:
    http://www.javaworld.com/javaworld/jw-12-2000/jw-1229-traps.html

  • Flash CC 2014 java crash when trying to publish in Yosemite 10.10.3 beta

    I have a colleague that chose to install the latest Yosemite 10.10.3 beta on their Mac, and now when they try to publish in Flash CC 2014, the bundled jre 1.7.0_10 crashes.
    If there is an issue with the beta and the bundled jre 1.7.0_10 inside Adobe Flash CC 2014.app,
    Is there a clean way of alternatively using an external jre (like the System java 1.6.x) or replacing/updating the bundled 1.7 jre with a newer 1.8 jre to see if this avoids the crash?
    Is there anything custom about the bundled jre inside Adobe Flash CC 2014.app?
    Crash log showing crashed thread:
    =========================================
    Process:          
    java [2204]
    Path:             
    /Applications/Adobe Flash CC 2014/Adobe Flash CC 2014.app/Contents/jre/jre1.7.0_10.jre/Contents/Home/bin/java
    Identifier:       
    net.java.openjdk.cmd
    Version:          
    1.0 (1.0)
    Code Type:        
    X86-64 (Native)
    Parent Process:   
    sh [2203]
    Responsible:      
    Adobe Flash CC 2014 [1305]
    User ID:          
    502
    Date/Time:        
    2015-02-06 14:41:40.780 -0600
    OS Version:       
    Mac OS X 10.10.3 (14D72i)
    Report Version:   
    11
    Anonymous UUID:   
    0B594D00-8D92-89D6-E44B-83E844ADA7DA
    Sleep/Wake UUID:  
    156FFF95-9E5C-4B06-AAA1-14988BBE7E71
    Time Awake Since Boot: 12000 seconds
    Time Since Wake:  
    5600 seconds
    Crashed Thread:   
    3
    Exception Type:   
    EXC_BAD_ACCESS (SIGABRT)
    Exception Codes:  
    KERN_INVALID_ADDRESS at 0x0000000000060a81
    Thread 3 Crashed:
    0   libsystem_kernel.dylib  
    0x00007fff919de286 __pthread_kill + 10
    1   libsystem_c.dylib       
    0x00007fff93a7ab53 abort + 129
    2   libjvm.dylib            
    0x000000010e5b4c93 os::abort(bool) + 25
    3   libjvm.dylib            
    0x000000010e6a344e VMError::report_and_die() + 2306
    4   libjvm.dylib            
    0x000000010e5b6387 JVM_handle_bsd_signal + 1073
    5   libsystem_platform.dylib
    0x00007fff88852f1a _sigtramp + 26
    6   libllvm.jnilib          
    0x000000011a468031 std::_Rb_tree<llvm::PointerValType, std::pair<llvm::PointerValType const, llvm::PATypeHolder>, std::_Select1st<std::pair<llvm::PointerValType const, llvm::PATypeHolder> >, std::less<llvm::PointerValType>, std::allocator<std::pair<llvm::PointerValType const, llvm::PATypeHolder> > >::find(llvm::PointerValType const&) + 1
    7   libllvm.jnilib          
    0x000000011a02a7cf Java_llvm_llvmJNI_PointerType_1get + 31
    8   ???                     
    0x000000010ecc7f90 0 + 4543250320
    9   ???                     
    0x000000010ecbc275 0 + 4543201909
    10  ???                     
    0x000000010ecbc333 0 + 4543202099
    11  ???                     
    0x000000010ecbc333 0 + 4543202099
    12  ???                     
    0x000000010ecbc158 0 + 4543201624
    13  ???                     
    0x000000010ecbc158 0 + 4543201624
    14  ???                     
    0x000000010ecbc158 0 + 4543201624
    15  ???                     
    0x000000010ecbc158 0 + 4543201624
    16  ???                     
    0x000000010ecbc158 0 + 4543201624
    17  ???                     
    0x000000010ecbc158 0 + 4543201624
    18  ???                     
    0x000000010ecbc158 0 + 4543201624
    19  ???                     
    0x000000010ecbc158 0 + 4543201624
    20  ???                     
    0x000000010ecbc2d4 0 + 4543202004
    21  ???                     
    0x000000010ecb64f7 0 + 4543177975
    22  libjvm.dylib            
    0x000000010e48855f JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) + 557
    23  libjvm.dylib            
    0x000000010e48832c JavaCalls::call(JavaValue*, methodHandle, JavaCallArguments*, Thread*) + 40
    24  libjvm.dylib            
    0x000000010e4a3b3a jni_invoke_static(JNIEnv_*, JavaValue*, _jobject*, JNICallType, _jmethodID*, JNI_ArgumentPusher*, Thread*) + 217
    25  libjvm.dylib            
    0x000000010e49cea6 jni_CallStaticVoidMethod + 267
    26  java                    
    0x000000010cf5b17e JavaMain + 2333
    27  libsystem_pthread.dylib 
    0x00007fff93954268 _pthread_body + 131
    28  libsystem_pthread.dylib 
    0x00007fff939541e5 _pthread_start + 176
    29  libsystem_pthread.dylib 
    0x00007fff9395241d thread_start + 13

    I am getting this same problem. Illustrator will work for some time until you move a random layer and it just crashes. I have FontExplorer Installed. Could this be an issue?
    Here is the crash report: http://pastebin.com/LauU5XhV

  • Java Crashing-- Log Included

    I have no idea what is going on here, but anytime I try to use any online Java App it crashes my browser, Firefox and Internet Explorer. I have tried re installing wit no luck. It put this on my desktop, filename hs_err_pid3648.log
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x02069558, pid=3648, tid=2860
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_10-b03 mixed mode, sharing)
    # Problematic frame:
    # C [YPCLSP.dll+0x9558]
    --------------- T H R E A D ---------------
    Current thread (0x0505bd80): JavaThread "Keep-Alive-Timer" daemon [_thread_in_native, id=2860]
    siginfo: ExceptionCode=0xc0000005, reading address 0x00000000
    Registers:
    EAX=0x020be500, EBX=0x00000000, ECX=0x00000000, EDX=0x02081cc8
    ESP=0x087df708, EBP=0x087df9f8, ESI=0x020be5b8, EDI=0x0505c0f8
    EIP=0x02069558, EFLAGS=0x00010246
    Top of Stack: (sp=0x087df708)
    0x087df708: 0505c0f8 087dfa3c ffffffff 087df6f4
    0x087df718: ffffffff 087dfa24 71a771c8 71a561f0
    0x087df728: ffffffff 71a561e8 02062d6b 087df7a0
    0x087df738: 7c809bc5 087df75c 02062d7d 0000002a
    0x087df748: 00000000 087dfa54 0000ffff 087dfa50
    0x087df758: 00000000 087dfa34 71ab47c5 00000e90
    0x087df768: 0000ffff 71ab2b32 0107cf28 087dfa54
    0x087df778: 71ab4829 0505c0f8 0505be40 ffffffff
    Instructions: (pc=0x02069558)
    0x02069548: f5 88 ff ff 84 c0 59 0f 85 52 02 00 00 8b 4d 10
    0x02069558: 8b 01 83 f8 64 76 03 6a 64 58 8d 95 1c fd ff ff
    Stack: [0x086e0000,0x087e0000), sp=0x087df708, free space=1021k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C [YPCLSP.dll+0x9558]
    C [YPCLSP.dll+0x3d89]
    C [WS2_32.dll+0x10a57]
    C 0x6d4c74be
    C 0x6d4c631f
    j java.net.PlainSocketImpl.socketClose0(Z)V+0
    j java.net.PlainSocketImpl.socketPreClose()V+2
    j java.net.PlainSocketImpl.close()V+44
    j java.net.Socket.close()V+28
    j sun.net.www.http.HttpClient.closeServer()V+9
    j sun.net.www.http.KeepAliveCache.run()V+128
    j java.lang.Thread.run()V+11
    v ~StubRoutines::call_stub
    V [jvm.dll+0x8757c]
    V [jvm.dll+0xde804]
    V [jvm.dll+0x8744d]
    V [jvm.dll+0x871aa]
    V [jvm.dll+0xa1de8]
    V [jvm.dll+0x10fad4]
    V [jvm.dll+0x10faa2]
    C [msvcrt.dll+0x2a3b0]
    C [kernel32.dll+0xb683]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j java.net.PlainSocketImpl.socketClose0(Z)V+0
    j java.net.PlainSocketImpl.socketPreClose()V+2
    j java.net.PlainSocketImpl.close()V+44
    j java.net.Socket.close()V+28
    j sun.net.www.http.HttpClient.closeServer()V+9
    j sun.net.www.http.KeepAliveCache.run()V+128
    j java.lang.Thread.run()V+11
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    =>0x0505bd80 JavaThread "Keep-Alive-Timer" daemon [_thread_in_native, id=2860]
    0x036ebff8 JavaThread "traceMsgQueueThread" daemon [_thread_blocked, id=1684]
    0x03645fc0 JavaThread "AWT-Windows" daemon [_thread_in_native, id=268]
    0x03648680 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=3568]
    0x03670960 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=612]
    0x03666f20 JavaThread "CompilerThread0" daemon [_thread_blocked, id=3788]
    0x036e9298 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=1336]
    0x03669848 JavaThread "Finalizer" daemon [_thread_blocked, id=2884]
    0x03626ea8 JavaThread "Reference Handler" daemon [_thread_blocked, id=3588]
    Other Threads:
    0x0003e4c8 VMThread [id=2760]
    0x0362c9d8 WatcherThread [id=2948]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 576K, used 233K [0x20a70000, 0x20b10000, 0x211d0000)
    eden space 512K, 33% used [0x20a70000, 0x20a9a728, 0x20af0000)
    from space 64K, 100% used [0x20b00000, 0x20b10000, 0x20b10000)
    to space 64K, 0% used [0x20af0000, 0x20af0000, 0x20b00000)
    tenured generation total 1408K, used 571K [0x211d0000, 0x21330000, 0x26a70000)
    the space 1408K, 40% used [0x211d0000, 0x2125ee88, 0x2125f000, 0x21330000)
    compacting perm gen total 8192K, used 1196K [0x26a70000, 0x27270000, 0x2aa70000)
    the space 8192K, 14% used [0x26a70000, 0x26b9b3c0, 0x26b9b400, 0x27270000)
    ro space 8192K, 63% used [0x2aa70000, 0x2af7eda8, 0x2af7ee00, 0x2b270000)
    rw space 12288K, 46% used [0x2b270000, 0x2b8112b8, 0x2b811400, 0x2be70000)
    Dynamic libraries:
    0x00400000 - 0x00419000 C:\Program Files\Internet Explorer\IEXPLORE.EXE
    0x7c900000 - 0x7c9b0000 C:\WINDOWS\system32\ntdll.dll
    0x7c800000 - 0x7c8f4000 C:\WINDOWS\system32\kernel32.dll
    0x77c10000 - 0x77c68000 C:\WINDOWS\system32\msvcrt.dll
    0x77d40000 - 0x77dd0000 C:\WINDOWS\system32\USER32.dll
    0x77f10000 - 0x77f57000 C:\WINDOWS\system32\GDI32.dll
    0x77f60000 - 0x77fd6000 C:\WINDOWS\system32\SHLWAPI.dll
    0x77dd0000 - 0x77e6b000 C:\WINDOWS\system32\ADVAPI32.dll
    0x77e70000 - 0x77f01000 C:\WINDOWS\system32\RPCRT4.dll
    0x77760000 - 0x778d0000 C:\WINDOWS\system32\SHDOCVW.dll
    0x77a80000 - 0x77b14000 C:\WINDOWS\system32\CRYPT32.dll
    0x77b20000 - 0x77b32000 C:\WINDOWS\system32\MSASN1.dll
    0x754d0000 - 0x75550000 C:\WINDOWS\system32\CRYPTUI.dll
    0x76c30000 - 0x76c5e000 C:\WINDOWS\system32\WINTRUST.dll
    0x76c90000 - 0x76cb8000 C:\WINDOWS\system32\IMAGEHLP.dll
    0x77120000 - 0x771ac000 C:\WINDOWS\system32\OLEAUT32.dll
    0x774e0000 - 0x7761d000 C:\WINDOWS\system32\ole32.dll
    0x5b860000 - 0x5b8b4000 C:\WINDOWS\system32\NETAPI32.dll
    0x771b0000 - 0x77259000 C:\WINDOWS\system32\WININET.dll
    0x76f60000 - 0x76f8c000 C:\WINDOWS\system32\WLDAP32.dll
    0x77c00000 - 0x77c08000 C:\WINDOWS\system32\VERSION.dll
    0x773d0000 - 0x774d3000 C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2982_x-ww_ac3f9c03\comctl32.dll
    0x7c9c0000 - 0x7d1d5000 C:\WINDOWS\system32\SHELL32.dll
    0x5d090000 - 0x5d12a000 C:\WINDOWS\system32\comctl32.dll
    0x5ad70000 - 0x5ada8000 C:\WINDOWS\system32\uxtheme.dll
    0x74720000 - 0x7476b000 C:\WINDOWS\system32\MSCTF.dll
    0x75f80000 - 0x7607d000 C:\WINDOWS\system32\BROWSEUI.dll
    0x20000000 - 0x20012000 C:\WINDOWS\system32\browselc.dll
    0x77b40000 - 0x77b62000 C:\WINDOWS\system32\appHelp.dll
    0x76fd0000 - 0x7704f000 C:\WINDOWS\system32\CLBCATQ.DLL
    0x77050000 - 0x77115000 C:\WINDOWS\system32\COMRes.dll
    0x7e1e0000 - 0x7e282000 C:\WINDOWS\system32\urlmon.dll
    0x77fe0000 - 0x77ff1000 C:\WINDOWS\system32\Secur32.dll
    0x77920000 - 0x77a13000 C:\WINDOWS\system32\SETUPAPI.dll
    0x769c0000 - 0x76a73000 C:\WINDOWS\system32\USERENV.dll
    0x10000000 - 0x1033a000 c:\program files\google\googletoolbar2.dll
    0x00da0000 - 0x01066000 C:\WINDOWS\system32\msi.dll
    0x76b40000 - 0x76b6d000 C:\WINDOWS\system32\WINMM.dll
    0x71ad0000 - 0x71ad9000 C:\WINDOWS\system32\WSOCK32.dll
    0x71ab0000 - 0x71ac7000 C:\WINDOWS\system32\WS2_32.dll
    0x71aa0000 - 0x71aa8000 C:\WINDOWS\system32\WS2HELP.dll
    0x76390000 - 0x763ad000 C:\WINDOWS\system32\IMM32.dll
    0x76380000 - 0x76385000 C:\WINDOWS\system32\MSIMG32.dll
    0x74980000 - 0x74a8e000 C:\WINDOWS\system32\msxml3.dll
    0x59a60000 - 0x59b01000 C:\WINDOWS\system32\DBGHELP.DLL
    0x76ee0000 - 0x76f1c000 C:\WINDOWS\system32\RASAPI32.DLL
    0x76e90000 - 0x76ea2000 C:\WINDOWS\system32\rasman.dll
    0x76eb0000 - 0x76edf000 C:\WINDOWS\system32\TAPI32.dll
    0x76e80000 - 0x76e8e000 C:\WINDOWS\system32\rtutils.dll
    0x77c70000 - 0x77c93000 C:\WINDOWS\system32\msv1_0.dll
    0x76d60000 - 0x76d79000 C:\WINDOWS\system32\iphlpapi.dll
    0x76990000 - 0x769b5000 C:\WINDOWS\system32\ntshrui.dll
    0x76b20000 - 0x76b31000 C:\WINDOWS\system32\ATL.DLL
    0x0ffd0000 - 0x0fff8000 C:\WINDOWS\system32\rsaenh.dll
    0x71b20000 - 0x71b32000 C:\WINDOWS\system32\MPR.dll
    0x75f60000 - 0x75f67000 C:\WINDOWS\System32\drprov.dll
    0x71c10000 - 0x71c1e000 C:\WINDOWS\System32\ntlanman.dll
    0x71cd0000 - 0x71ce7000 C:\WINDOWS\System32\NETUI0.dll
    0x71c90000 - 0x71cd0000 C:\WINDOWS\System32\NETUI1.dll
    0x71c80000 - 0x71c87000 C:\WINDOWS\System32\NETRAP.dll
    0x71bf0000 - 0x71c03000 C:\WINDOWS\System32\SAMLIB.dll
    0x75f70000 - 0x75f79000 C:\WINDOWS\System32\davclnt.dll
    0x01650000 - 0x0165e000 C:\Program Files\Adobe\Acrobat 7.0\ActiveX\AcroIEHelper.dll
    0x7c340000 - 0x7c396000 C:\WINDOWS\system32\MSVCR71.dll
    0x65000000 - 0x65038000 C:\PROGRA~1\NETSCA~1\NETSCA~1\pbhelper.dll
    0x73300000 - 0x73367000 C:\WINDOWS\system32\vbscript.dll
    0x73dd0000 - 0x73ece000 C:\WINDOWS\system32\MFC42.DLL
    0x75e90000 - 0x75f40000 C:\WINDOWS\system32\SXS.DLL
    0x016a0000 - 0x01728000 C:\WINDOWS\system32\shdoclc.dll
    0x01b90000 - 0x01c65000 C:\PROGRA~1\SPYBOT~1\SDHelper.dll
    0x5edd0000 - 0x5ede7000 C:\WINDOWS\system32\olepro32.dll
    0x01d90000 - 0x02055000 C:\WINDOWS\system32\xpsp2res.dll
    0x75cf0000 - 0x75d81000 C:\WINDOWS\system32\mlang.dll
    0x02060000 - 0x02088000 C:\WINDOWS\system32\YPCLSP.dll
    0x71a50000 - 0x71a8f000 C:\WINDOWS\system32\mswsock.dll
    0x662b0000 - 0x66308000 C:\WINDOWS\system32\hnetcfg.dll
    0x71a90000 - 0x71a98000 C:\WINDOWS\System32\wshtcpip.dll
    0x76f20000 - 0x76f47000 C:\WINDOWS\system32\DNSAPI.dll
    0x76fb0000 - 0x76fb8000 C:\WINDOWS\System32\winrnr.dll
    0x722b0000 - 0x722b5000 C:\WINDOWS\system32\sensapi.dll
    0x76fc0000 - 0x76fc6000 C:\WINDOWS\system32\rasadhlp.dll
    0x02b50000 - 0x02b69000 c:\progra~1\mcafee.com\vso\McVSSkt.dll
    0x605d0000 - 0x605d9000 C:\WINDOWS\system32\mslbui.dll
    0x7dc30000 - 0x7df21000 C:\WINDOWS\system32\mshtml.dll
    0x746c0000 - 0x746e7000 C:\WINDOWS\system32\msls31.dll
    0x76bf0000 - 0x76bfb000 C:\WINDOWS\system32\PSAPI.DLL
    0x746f0000 - 0x7471a000 C:\WINDOWS\system32\msimtf.dll
    0x5c2c0000 - 0x5c300000 C:\WINDOWS\ime\sptip.dll
    0x74c80000 - 0x74cac000 C:\WINDOWS\system32\OLEACC.dll
    0x76080000 - 0x760e5000 C:\WINDOWS\system32\MSVCP60.dll
    0x02d10000 - 0x02d21000 C:\WINDOWS\IME\SPGRMR.DLL
    0x03440000 - 0x0349b000 C:\Program Files\Common Files\Microsoft Shared\INK\SKCHUI.DLL
    0x75c50000 - 0x75cbe000 C:\WINDOWS\system32\jscript.dll
    0x66e50000 - 0x66e90000 C:\WINDOWS\system32\iepeers.dll
    0x73000000 - 0x73026000 C:\WINDOWS\system32\WINSPOOL.DRV
    0x1c000000 - 0x1c006000 C:\WINDOWS\HKNTDLL.dll
    0x72d20000 - 0x72d29000 C:\WINDOWS\system32\wdmaud.drv
    0x72d10000 - 0x72d18000 C:\WINDOWS\system32\msacm32.drv
    0x77be0000 - 0x77bf5000 C:\WINDOWS\system32\MSACM32.dll
    0x77bd0000 - 0x77bd7000 C:\WINDOWS\system32\midimap.dll
    0x71d40000 - 0x71d5c000 C:\WINDOWS\system32\actxprxy.dll
    0x6e4a0000 - 0x6e4ac000 C:\WINDOWS\system32\corpol.dll
    0x75e60000 - 0x75e73000 C:\WINDOWS\system32\cryptnet.dll
    0x4d4f0000 - 0x4d548000 C:\WINDOWS\system32\WINHTTP.dll
    0x76c60000 - 0x76c8a000 C:\WINDOWS\system32\sfc_os.dll
    0x75260000 - 0x75289000 C:\WINDOWS\system32\ADVPACK.DLL
    0x75150000 - 0x75164000 C:\WINDOWS\system32\Cabinet.dll
    0x76200000 - 0x76271000 C:\WINDOWS\system32\mshtmled.dll
    0x60980000 - 0x60987000 C:\WINDOWS\system32\MSISIP.DLL
    0x74ea0000 - 0x74eb0000 C:\WINDOWS\system32\wshext.dll
    0x763b0000 - 0x763f9000 C:\WINDOWS\system32\comdlg32.dll
    0x36d30000 - 0x36d4a000 C:\PROGRA~1\MICROS~2\OFFICE11\MCPS.DLL
    0x6d570000 - 0x6d582000 C:\Program Files\Java\jre1.5.0_10\bin\npjpi150_10.dll
    0x6d400000 - 0x6d417000 C:\Program Files\Java\jre1.5.0_10\bin\jpiexp32.dll
    0x6d450000 - 0x6d468000 C:\Program Files\Java\jre1.5.0_10\bin\jpishare.dll
    0x6d630000 - 0x6d7cc000 C:\PROGRA~1\Java\JRE15~1.0_1\bin\client\jvm.dll
    0x6d280000 - 0x6d288000 C:\PROGRA~1\Java\JRE15~1.0_1\bin\hpi.dll
    0x6d600000 - 0x6d60c000 C:\PROGRA~1\Java\JRE15~1.0_1\bin\verify.dll
    0x6d300000 - 0x6d31d000 C:\PROGRA~1\Java\JRE15~1.0_1\bin\java.dll
    0x6d620000 - 0x6d62f000 C:\PROGRA~1\Java\JRE15~1.0_1\bin\zip.dll
    0x6d000000 - 0x6d169000 C:\Program Files\Java\jre1.5.0_10\bin\awt.dll
    0x73760000 - 0x737a9000 C:\WINDOWS\system32\ddraw.dll
    0x73bc0000 - 0x73bc6000 C:\WINDOWS\system32\DCIMAN32.dll
    0x6d240000 - 0x6d280000 C:\Program Files\Java\jre1.5.0_10\bin\fontmanager.dll
    0x6d1f0000 - 0x6d203000 C:\Program Files\Java\jre1.5.0_10\bin\deploy.dll
    0x6d5b0000 - 0x6d5d3000 C:\Program Files\Java\jre1.5.0_10\bin\RegUtils.dll
    0x6d3e0000 - 0x6d3f5000 C:\Program Files\Java\jre1.5.0_10\bin\jpicom32.dll
    0x026f0000 - 0x0272e000 C:\WINDOWS\system32\xpsp3res.dll
    VM Arguments:
    jvm_args: -Xbootclasspath/a:C:\PROGRA~1\Java\JRE15~1.0_1\lib\deploy.jar;C:\PROGRA~1\Java\JRE15~1.0_1\lib\plugin.jar -Xmx96m -Djavaplugin.maxHeapSize=96m -Xverify:remote -Djavaplugin.version=1.5.0_10 -Djavaplugin.nodotversion=150_10 -Dbrowser=sun.plugin -DtrustProxy=true -Dapplication.home=C:\PROGRA~1\Java\JRE15~1.0_1 -Djava.protocol.handler.pkgs=sun.plugin.net.protocol -Djavaplugin.vm.options=-Djava.class.path=C:\PROGRA~1\Java\JRE15~1.0_1\classes -Xbootclasspath/a:C:\PROGRA~1\Java\JRE15~1.0_1\lib\deploy.jar;C:\PROGRA~1\Java\JRE15~1.0_1\lib\plugin.jar -Xmx96m -Djavaplugin.maxHeapSize=96m -Xverify:remote -Djavaplugin.version=1.5.0_10 -Djavaplugin.nodotversion=150_10 -Dbrowser=sun.plugin -DtrustProxy=true -Dapplication.home=C:\PROGRA~1\Java\JRE15~1.0_1 -Djava.protocol.handler.pkgs=sun.plugin.net.protocol vfprintf
    java_command: <unknown>
    Launcher Type: generic
    Environment Variables:
    CLASSPATH=.;C:\Program Files\Java\jre1.5.0_08\lib\ext\QTJava.zip
    PATH=C:\PROGRA~1\Java\JRE15~1.0_1\bin;C:\Program Files\Internet Explorer;;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Common Files\Adobe\AGL;C:\Program Files\QuickTime\QTSystem\;.
    USERNAME=Paul
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 15 Model 4 Stepping 3, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows XP Build 2600 Service Pack 2
    CPU:total 2 (cores per cpu 1, threads per core 2) family 15 model 4 stepping 3, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ht
    Memory: 4k page, physical 521764k(210740k free), swap 1273228k(939680k free)
    vm_info: Java HotSpot(TM) Client VM (1.5.0_10-b03) for windows-x86, built on Nov 9 2006 13:13:34 by "java_re" with MS VC++ 6.0

    This classpath setting may be interfering. Try removing it and install Java.
    CLASSPATH=C:\Program Files\QuickTime\QTSystem\QTJava.zip
    (or for a temporary change, good while the cmd window is open only, open a cmd window and type "set classpath=" without the quote marks, then verify that the classpath was unset by typing "set".)

Maybe you are looking for