My Applet crashes java.exe to crash

Ok, I'm not sure why, but on some computers my applet is making java.exe crash. When i attach a debugger to java.exe when it crashes I see a "Access Violation Error". The oddest part is that while one computer will crash and another identical computer with the exact same setup wont. The crash happens the moment the applet starts.
Now I've done just about everything i could to figure this out. I've installed uninstalled and reinstalled java. I've run ram, hard drive, cpu, ect tests all reporting no problem. I've disabled anti-virus and did the uninstall and reinstall again. I've installed older versions of the java. I've resigned my jar file, created a new key and then resigned. Practically the only thing i have not done and is not a viable solution is reformat/replace the computers. So I'm left thinking it might be something in the applet that is causing it.
It could be in the applet parameters but i doubt it.
Pram fp is about 5,000 characters long
Pram VerfyType is about 1 character long
Pram Arg1 is a max of 11 characters long
Pram Arg2 is a max of 11 characters long
This applet is meant to interact with a program on the computer that connects to a variety of fingerprint scanners that we use and passes information form the internal site to the scanner and vice versa. So it just starts a loop back socket. For the loop back socket, i have tired 127.0.0.1 and localhost which still yield the same result.
Here is the applet. It's very simple.
import javax.imageio.ImageIO;
import javax.swing.*;
import java.awt.Image;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.net.MalformedURLException;
import java.net.Socket;
import java.net.URL;
import java.net.UnknownHostException;
import java.security.AccessController;
import java.security.PrivilegedAction;
public class Verify extends JApplet {
     private static final long serialVersionUID = 908206045464466336L;
     public JLabel jLabel1;
    public jPanel jPanel1;
    public String Template = "";
    public String VerfyType = "";
    public String Arg1 = "";
    public String Arg2 = "";
    public Thread t;
    Socket socket = null;
    public void stop()
         jPanel1.threadRun = false;
         if (socket != null)
              try {
                    socket.close();
               } catch (IOException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
     public void init()
        //Execute a job on the event-dispatching thread:
        try {
            javax.swing.SwingUtilities.invokeAndWait(new Runnable() {
                public void run() {
                     Template = getParameter("fp").trim();
                     VerfyType = getParameter("VerfyType").trim();
                     Arg1 = getParameter("Arg1").trim();
                     Arg2 = getParameter("Arg2").trim();
                     initComponents();
        } catch (Exception e) {
            System.err.println("getParameter didn't successfully complete");
        StartVerify();
    private void initComponents() {
          jPanel1 = new jPanel();
          jLabel1 = new JLabel();
          jPanel1.setPreferredSize(new java.awt.Dimension(66, 66));
          jPanel1.setBackground(new java.awt.Color(255, 255, 255));
          jLabel1.setText("Initializing Please Wait.");
        setBackground(new java.awt.Color(255, 255, 255));
        javax.swing.GroupLayout jPanel1Layout = new javax.swing.GroupLayout(jPanel1);
        jPanel1.setLayout(jPanel1Layout);
        jPanel1Layout.setHorizontalGroup(
            jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
            .addGap(0, 66, Short.MAX_VALUE)
        jPanel1Layout.setVerticalGroup(
            jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
            .addGap(0, 66, Short.MAX_VALUE)
        jLabel1.setHorizontalAlignment(javax.swing.SwingConstants.CENTER);
        javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
        getContentPane().setLayout(layout);
        layout.setHorizontalGroup(
            layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
            .addGroup(layout.createSequentialGroup()
                .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                    .addGroup(layout.createSequentialGroup()
                        .addContainerGap()
                        .addComponent(jLabel1, javax.swing.GroupLayout.DEFAULT_SIZE, 536, Short.MAX_VALUE))
                    .addGroup(layout.createSequentialGroup()
                        .addGap(224, 224, 224)
                        .addComponent(jPanel1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)))
                .addContainerGap())
        layout.setVerticalGroup(
            layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
            .addGroup(layout.createSequentialGroup()
                .addContainerGap()
                .addComponent(jPanel1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
                .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                .addComponent(jLabel1)
                .addContainerGap(116, Short.MAX_VALUE))
    public void StartVerify()
         t = new Thread() {
          public void run()
              AccessController.doPrivileged(new PrivilegedAction() {
              public Object run()
                        PrintWriter out = null;
                        BufferedReader in = null;
                        try {
                            socket = new Socket("localhost", 4001);
                            out = new PrintWriter(socket.getOutputStream(), true);
                            in = new BufferedReader(new InputStreamReader(socket.getInputStream()));
                        } catch (UnknownHostException e) {
                             jLabel1.setText("Unkown Host Error.");
                            return null;
                        } catch (IOException e) {
                             jLabel1.setText("Unable to get communication streams..");
                            return null;
                        String reponse = "";
                        try {
                            reponse = in.readLine();
                            if (reponse.equalsIgnoreCase("cmd"))
                                out.write("v\n");
                                out.flush();
                                reponse = in.readLine();
                                if (reponse.equalsIgnoreCase("send"))
                                    out.write(Template+"\n");
                                    out.flush();
                                    reponse = in.readLine();
                                    if (reponse.equalsIgnoreCase("finger"))
                                         jLabel1.setText("Please Have the client place their finger on the scanner.");
                                         while (true)
                                              reponse = in.readLine();
                                              if (!reponse.equalsIgnoreCase("pulse"))
                                                   break;
                                        if (reponse.equalsIgnoreCase("good"))
                                            try {
                                                 DoRedirect();
                                                socket.close();
                                            } catch (IOException ex) {
                                        else if (reponse.equalsIgnoreCase("bad"))
                                                       int _return = LoopTellCanceled(socket, out, in);
                                        else
                                             jLabel1.setText("Unexpected response from finger print server.");
                                    else
                                         jLabel1.setText("Unexpected response from finger print server.");
                                else
                                     jLabel1.setText("Unexpected response from finger print server.");
                            else
                                 jLabel1.setText("Unexpected response from finger print server.");
                        catch (IOException ex)
                             jLabel1.setText("We lost connection to the finger print reader.");
                             System.err.println(ex);
                        try {
                            out.close();
                            in.close();
                            socket.close();
                        } catch (IOException e) {
                            System.err.println("Couldn't get I/O for the connection");
                            return null;
                        return null;
        t.start();
    private int LoopTellCanceled(Socket socket, PrintWriter out, BufferedReader in)
         int res = JOptionPane.showConfirmDialog(null, "Incorrect Finger Print. Would you like to try again?", "Finger Print was Bad", JOptionPane.YES_NO_OPTION);
         while (res == JOptionPane.YES_OPTION)
            String reponse = "";
            try {
                out.write("v\n");
                out.flush();
                reponse = in.readLine();
                if (reponse.equalsIgnoreCase("send"))
                    out.write(Template+"\n");
                    out.flush();
                    reponse = in.readLine();
                    if (reponse.equalsIgnoreCase("finger"))
                         jLabel1.setText("Please Have the client place their finger on the scanner.");
                         while (true)
                              reponse = in.readLine();
                              if (!reponse.equalsIgnoreCase("pulse"))
                                   break;
                        if (reponse.equalsIgnoreCase("good"))
                            try {
                                 DoRedirect();
                                socket.close();
                            } catch (IOException ex) {
                        else
                             res = JOptionPane.showConfirmDialog(null, "Incorrect Finger Print. Would you like to try again?", "Finger Print was Bad", JOptionPane.YES_NO_OPTION);
            } catch (IOException ex) {
                 System.err.println(ex);
         return res;
    public void DoRedirect()
          try
               if (Arg1.equalsIgnoreCase(""))
                    getAppletContext().showDocument(new URL("javascript: fprintVerified("+VerfyType+");"));
               else
                    if (Arg2.equalsIgnoreCase(""))
                         getAppletContext().showDocument(new URL("javascript: fprintVerified("+VerfyType+", "+Arg1+");"));
                    else
                         getAppletContext().showDocument(new URL("javascript: fprintVerified("+VerfyType+", "+Arg1+", "+Arg2+");"));
          catch (MalformedURLException ex)
               ex.printStackTrace();
}Edited by: Pyromanci on Mar 1, 2011 7:58 AM

What does your error console report? - Which one? Browser, PC, ect
How about your java console say? - I have no clue what it could be saying since java.exe crashes the moment the applet starts the console is no longer accessible.
What browser and version? - Firefox v3.6.13
Have you tried a different one? - Yes Ie 6,7, and 8. Though the site the applet runs form was designed specifically for firefox (internal site)
Have you tried Appletviewer? - Yes applet runs as intended.
Did you give the Applet permission? I know you said you signed it - did it all go right? - Yes. Gave me the usual response of will expire in x months

Similar Messages

  • Java applet crashes

    Here is the scenario:
    I go to http://www.missionred.com/
    I play some of the games there
    After a few hundred clicks the java applet crashes
    This is using any browser, I've tested it in IE, FireFox and Opera
    I am using JDK 1.5.0_07
    it creates logs on my desktop
    here is how they all begin:
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x00000002, pid=6648, tid=4900
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_07-b03 mixed mode)
    # Problematic frame:
    # C 0x00000002
    but with different numbers every time

    Here are the full logs:
    Number 1
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x00000002, pid=6648, tid=4900
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_07-b03 mixed mode)
    # Problematic frame:
    # C 0x00000002
    --------------- T H R E A D ---------------
    Current thread (0x0f3c2b20): JavaThread "AWT-EventQueue-1" [_thread_in_native, id=4900]
    siginfo: ExceptionCode=0xc0000005, reading address 0x00000002
    Registers:
    EAX=0x02b751c0, EBX=0x0b111ec8, ECX=0x02b75970, EDX=0x7c90eb94
    ESP=0x0fabf56c, EBP=0x0fabf58c, ESI=0x02b751c0, EDI=0x0f3c2b20
    EIP=0x00000002, EFLAGS=0x00010206
    Top of Stack: (sp=0x0fabf56c)
    0x0fabf56c: 5ee01531 02b751c0 00000001 00000000
    0x0fabf57c: 02b7487b 0461b910 100aa518 00000000
    0x0fabf58c: 0fabf5a0 6d4a2aba 0461b910 0b111ec8
    0x0fabf59c: 00000001 0fabf5e4 6d4a1bd3 100aa518
    0x0fabf5ac: 00000001 04b5826f 0f3c2be0 0fabf5ec
    0x0fabf5bc: 0f47afa0 00000000 00000001 0fabf5c8
    0x0fabf5cc: 00000000 0fabf5fc 0b112d10 00000000
    0x0fabf5dc: 0b111ec8 0fabf5f4 0fabf61c 04b52923
    Instructions: (pc=0x00000002)
    0xfffffff2:
    Stack: [0x0f9c0000,0x0fac0000), sp=0x0fabf56c, free space=1021k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C 0x00000002
    C [jsoundds.dll+0x2aba]
    C [jsoundds.dll+0x1bd3]
    j com.sun.media.sound.DirectAudioDevice.access$1600(JZ)V+2
    j com.sun.media.sound.DirectAudioDevice$DirectDL.flush()V+86
    j com.sun.media.sound.JavaSoundAudioClip.startImpl(Z)V+75
    j com.sun.media.sound.JavaSoundAudioClip.play()V+2
    j sun.applet.AppletAudioClip.play()V+11
    j a.f.a.a(Ljava/lang/String;)V+24
    j a.a.e.b.a(II)V+184
    j a.a.e.a.a(Ljava/awt/event/MouseEvent;)V+48
    j a.c.a.d(Ljava/awt/event/MouseEvent;)V+69
    j a.c.d.mousePressed(Ljava/awt/event/MouseEvent;)V+18
    j java.awt.Component.processMouseEvent(Ljava/awt/event/MouseEvent;)V+54
    J java.awt.Component.processEvent(Ljava/awt/AWTEvent;)V
    J java.awt.Container.processEvent(Ljava/awt/AWTEvent;)V
    J java.awt.Component.dispatchEventImpl(Ljava/awt/AWTEvent;)V
    J java.awt.Container.dispatchEventImpl(Ljava/awt/AWTEvent;)V
    J java.awt.EventQueue.dispatchEvent(Ljava/awt/AWTEvent;)V
    J java.awt.EventDispatchThread.pumpOneEventForHierarchy(ILjava/awt/Component;)Z
    v ~RuntimeStub::alignment_frame_return Runtime1 stub
    j java.awt.EventDispatchThread.pumpEventsForHierarchy(ILjava/awt/Conditional;Ljava/awt/Component;)V+26
    j java.awt.EventDispatchThread.pumpEvents(ILjava/awt/Conditional;)V+4
    j java.awt.EventDispatchThread.pumpEvents(Ljava/awt/Conditional;)V+3
    j java.awt.EventDispatchThread.run()V+9
    v ~StubRoutines::call_stub
    V [jvm.dll+0x86401]
    V [jvm.dll+0xdb172]
    V [jvm.dll+0x862d2]
    V [jvm.dll+0x8602f]
    V [jvm.dll+0xa0bcb]
    V [jvm.dll+0x10bdad]
    V [jvm.dll+0x10bd7b]
    C [msvcrt.dll+0x2a3b0]
    C [kernel32.dll+0xb50b]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j com.sun.media.sound.DirectAudioDevice.nFlush(JZ)V+0
    j com.sun.media.sound.DirectAudioDevice.access$1600(JZ)V+2
    j com.sun.media.sound.DirectAudioDevice$DirectDL.flush()V+86
    j com.sun.media.sound.JavaSoundAudioClip.startImpl(Z)V+75
    j com.sun.media.sound.JavaSoundAudioClip.play()V+2
    j sun.applet.AppletAudioClip.play()V+11
    j a.f.a.a(Ljava/lang/String;)V+24
    j a.a.e.b.a(II)V+184
    j a.a.e.a.a(Ljava/awt/event/MouseEvent;)V+48
    j a.c.a.d(Ljava/awt/event/MouseEvent;)V+69
    j a.c.d.mousePressed(Ljava/awt/event/MouseEvent;)V+18
    j java.awt.Component.processMouseEvent(Ljava/awt/event/MouseEvent;)V+54
    J java.awt.Component.processEvent(Ljava/awt/AWTEvent;)V
    J java.awt.Container.processEvent(Ljava/awt/AWTEvent;)V
    J java.awt.Component.dispatchEventImpl(Ljava/awt/AWTEvent;)V
    J java.awt.Container.dispatchEventImpl(Ljava/awt/AWTEvent;)V
    J java.awt.EventQueue.dispatchEvent(Ljava/awt/AWTEvent;)V
    J java.awt.EventDispatchThread.pumpOneEventForHierarchy(ILjava/awt/Component;)Z
    v ~RuntimeStub::alignment_frame_return Runtime1 stub
    j java.awt.EventDispatchThread.pumpEventsForHierarchy(ILjava/awt/Conditional;Ljava/awt/Component;)V+26
    j java.awt.EventDispatchThread.pumpEvents(ILjava/awt/Conditional;)V+4
    j java.awt.EventDispatchThread.pumpEvents(Ljava/awt/Conditional;)V+3
    j java.awt.EventDispatchThread.run()V+9
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x0f3d2dc8 JavaThread "Direct Clip" daemon [_thread_blocked, id=7248]
    0x0f431780 JavaThread "Java Sound Event Dispatcher" daemon [_thread_blocked, id=6448]
    0x0f3ca830 JavaThread "Thread-4" [_thread_blocked, id=2212]
    =>0x0f3c2b20 JavaThread "AWT-EventQueue-1" [_thread_in_native, id=4900]
    0x0f3cb9f8 JavaThread "Thread-2" [_thread_blocked, id=6140]
    0x0f3ba4c0 JavaThread "AWT-EventQueue-0" [_thread_blocked, id=5560]
    0x0f3b1a80 JavaThread "AWT-Windows" daemon [_thread_in_native, id=4920]
    0x0f3b1648 JavaThread "AWT-Shutdown" [_thread_blocked, id=4596]
    0x0f3abed0 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=2384]
    0x04b1dbb0 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=5128]
    0x04b1c780 JavaThread "CompilerThread0" daemon [_thread_blocked, id=4276]
    0x04b1bb00 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=4544]
    0x04b12510 JavaThread "Finalizer" daemon [_thread_blocked, id=6532]
    0x04b11a58 JavaThread "Reference Handler" daemon [_thread_blocked, id=5144]
    0x0054ec88 JavaThread "main" [_thread_in_native, id=6652]
    Other Threads:
    0x04b0d8b8 VMThread [id=4780]
    0x04b1ed90 WatcherThread [id=5288]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 768K, used 442K [0x06bd0000, 0x06ca0000, 0x070b0000)
    eden space 704K, 62% used [0x06bd0000, 0x06c3e5a0, 0x06c80000)
    from space 64K, 1% used [0x06c90000, 0x06c90338, 0x06ca0000)
    to space 64K, 0% used [0x06c80000, 0x06c80000, 0x06c90000)
    tenured generation total 8904K, used 5563K [0x070b0000, 0x07962000, 0x0abd0000)
    the space 8904K, 62% used [0x070b0000, 0x0761ed68, 0x0761ee00, 0x07962000)
    compacting perm gen total 8192K, used 5519K [0x0abd0000, 0x0b3d0000, 0x0ebd0000)
    the space 8192K, 67% used [0x0abd0000, 0x0b133f28, 0x0b134000, 0x0b3d0000)
    No shared spaces configured.
    Dynamic libraries:
    0x00400000 - 0x00429000      C:\Program Files\Opera\Opera.exe
    0x7c900000 - 0x7c9b0000      C:\WINDOWS\system32\ntdll.dll
    0x7c800000 - 0x7c8f4000      C:\WINDOWS\system32\kernel32.dll
    0x77d40000 - 0x77dd0000      C:\WINDOWS\system32\user32.dll
    0x77f10000 - 0x77f57000      C:\WINDOWS\system32\GDI32.dll
    0x76390000 - 0x763ad000      C:\WINDOWS\system32\IMM32.DLL
    0x77dd0000 - 0x77e6b000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77e70000 - 0x77f01000      C:\WINDOWS\system32\RPCRT4.dll
    0x629c0000 - 0x629c9000      C:\WINDOWS\system32\LPK.DLL
    0x74d90000 - 0x74dfb000      C:\WINDOWS\system32\USP10.dll
    0x77c10000 - 0x77c68000      C:\WINDOWS\system32\msvcrt.dll
    0x59800000 - 0x59817000      C:\Program Files\TuneUp Utilities 2006\WinStylerThemeHelper.dll
    0x77120000 - 0x771ac000      C:\WINDOWS\system32\oleaut32.dll
    0x774e0000 - 0x7761d000      C:\WINDOWS\system32\ole32.dll
    0x679e0000 - 0x67ff4000      C:\Program Files\Opera\Opera.dll
    0x76b40000 - 0x76b6d000      C:\WINDOWS\system32\winmm.dll
    0x763b0000 - 0x763f9000      C:\WINDOWS\system32\comdlg32.dll
    0x77f60000 - 0x77fd6000      C:\WINDOWS\system32\SHLWAPI.dll
    0x773d0000 - 0x774d2000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2180_x-ww_a84f1ff9\COMCTL32.dll
    0x7c9c0000 - 0x7d1d5000      C:\WINDOWS\system32\SHELL32.dll
    0x77c00000 - 0x77c08000      C:\WINDOWS\system32\version.dll
    0x71ad0000 - 0x71ad9000      C:\WINDOWS\system32\wsock32.dll
    0x71ab0000 - 0x71ac7000      C:\WINDOWS\system32\WS2_32.dll
    0x71aa0000 - 0x71aa8000      C:\WINDOWS\system32\WS2HELP.dll
    0x5ad70000 - 0x5ada8000      C:\WINDOWS\system32\uxtheme.dll
    0x10000000 - 0x10006000      C:\DOCUME~1\Igor\LOCALS~1\Temp\IadHide5.dll
    0x74720000 - 0x7476b000      C:\WINDOWS\system32\MSCTF.dll
    0x00af0000 - 0x00af7000      C:\Program Files\Logitech\MouseWare\System\LgWndHk.dll
    0x755c0000 - 0x755ee000      C:\WINDOWS\system32\msctfime.ime
    0x77fe0000 - 0x77ff1000      C:\WINDOWS\system32\Secur32.dll
    0x76fd0000 - 0x7704f000      C:\WINDOWS\system32\CLBCATQ.DLL
    0x77050000 - 0x77115000      C:\WINDOWS\system32\COMRes.dll
    0x76380000 - 0x76385000      C:\WINDOWS\system32\Msimg32.dll
    0x77920000 - 0x77a13000      C:\WINDOWS\system32\SETUPAPI.dll
    0x5ee00000 - 0x5ee1f000      C:\Program Files\AV Vcs 4.0 DIAMOND\Vcs4Hook.dll
    0x33300000 - 0x33310000      C:\Program Files\AV Vcs 4.0 DIAMOND\Vcs4Conf.dll
    0x76bf0000 - 0x76bfb000      C:\WINDOWS\system32\PsApi.dll
    0x02cd0000 - 0x02cdb000      C:\Program Files\Common Files\Logitech\Scrolling\LgMsgHk.dll
    0x76080000 - 0x760e5000      C:\WINDOWS\system32\MSVCP60.dll
    0x71a50000 - 0x71a8f000      C:\WINDOWS\System32\mswsock.dll
    0x76f20000 - 0x76f47000      C:\WINDOWS\system32\DNSAPI.dll
    0x76d60000 - 0x76d79000      C:\WINDOWS\system32\iphlpapi.dll
    0x662b0000 - 0x66308000      C:\WINDOWS\system32\hnetcfg.dll
    0x71a90000 - 0x71a98000      C:\WINDOWS\System32\wshtcpip.dll
    0x76fc0000 - 0x76fc6000      C:\WINDOWS\system32\rasadhlp.dll
    0x77b40000 - 0x77b62000      C:\WINDOWS\system32\appHelp.dll
    0x77a20000 - 0x77a74000      C:\WINDOWS\System32\cscui.dll
    0x76600000 - 0x7661d000      C:\WINDOWS\System32\CSCDLL.dll
    0x75f80000 - 0x7607d000      C:\WINDOWS\System32\browseui.dll
    0x76990000 - 0x769b5000      C:\WINDOWS\system32\ntshrui.dll
    0x76b20000 - 0x76b31000      C:\WINDOWS\system32\ATL.DLL
    0x5b860000 - 0x5b8b4000      C:\WINDOWS\system32\NETAPI32.dll
    0x769c0000 - 0x76a73000      C:\WINDOWS\system32\USERENV.dll
    0x77760000 - 0x778cf000      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
    0x771b0000 - 0x77256000      C:\WINDOWS\system32\WININET.dll
    0x76f60000 - 0x76f8c000      C:\WINDOWS\system32\WLDAP32.dll
    0x6d6c0000 - 0x6d857000      C:\Program Files\Java\jre1.5.0_07\bin\client\jvm.dll
    0x6d280000 - 0x6d288000      C:\Program Files\Java\jre1.5.0_07\bin\hpi.dll
    0x6d690000 - 0x6d69c000      C:\Program Files\Java\jre1.5.0_07\bin\verify.dll
    0x6d300000 - 0x6d31d000      C:\Program Files\Java\jre1.5.0_07\bin\java.dll
    0x6d6b0000 - 0x6d6bf000      C:\Program Files\Java\jre1.5.0_07\bin\zip.dll
    0x6d000000 - 0x6d167000      C:\Program Files\Java\jre1.5.0_07\bin\awt.dll
    0x73000000 - 0x73026000      C:\WINDOWS\system32\WINSPOOL.DRV
    0x73760000 - 0x737a9000      C:\WINDOWS\system32\ddraw.dll
    0x73bc0000 - 0x73bc6000      C:\WINDOWS\system32\DCIMAN32.dll
    0x73940000 - 0x73a10000      C:\WINDOWS\system32\D3DIM700.DLL
    0x6d240000 - 0x6d27f000      C:\Program Files\Java\jre1.5.0_07\bin\fontmanager.dll
    0x74e30000 - 0x74e9c000      C:\WINDOWS\system32\RICHED20.DLL
    0x6d4c0000 - 0x6d4d3000      C:\Program Files\Java\jre1.5.0_07\bin\net.dll
    0x6d4e0000 - 0x6d4e9000      C:\Program Files\Java\jre1.5.0_07\bin\nio.dll
    0x76fb0000 - 0x76fb8000      C:\WINDOWS\System32\winrnr.dll
    0x6d470000 - 0x6d495000      C:\Program Files\Java\jre1.5.0_07\bin\jsound.dll
    0x6d4a0000 - 0x6d4a7000      C:\Program Files\Java\jre1.5.0_07\bin\jsoundds.dll
    0x73f10000 - 0x73f6c000      C:\WINDOWS\system32\DSOUND.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
    0x73ee0000 - 0x73ee4000      C:\WINDOWS\system32\KsUser.dll
    VM Arguments:
    jvm_args: abort exit -Xbootclasspath/p:C:\Program Files\Opera\Classes\Opera.jar;C:\Program Files\Opera\Plugins;C:\Program Files\Opera\Program\Plugins;;C:\Program Files\Opera\Program\Plugins\npdrmv2.zip;C:\Program Files\Opera\Program\Plugins\npds.zip;C:\Program Files\Java\jre1.5.0_07\lib\jaws.jar;C:\Program Files\Java\jre1.5.0_07\lib\plugin.jar -Djava.security.policy=C:\Program Files\Opera\Classes\Opera.policy -Dbrowser.opera.classpath=C:\Program Files\Opera\Classes\Opera.jar
    java_command: <unknown>
    Launcher Type: generic
    Environment Variables:
    CLASSPATH=C:\Program Files\Java\jre1.5.0_04\lib\ext\QTJava.zip
    PATH=C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Java\jdk1.5.0\bin;C:\Program Files\cvsnt;C:\Program Files\QuickTime\QTSystem\;C:\Program Files\SSH Secure Shell
    USERNAME=Igor
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 6 Model 10 Stepping 0, AuthenticAMD
    --------------- S Y S T E M ---------------
    OS: Windows XP Build 2600 Service Pack 2
    CPU:total 1 family 6, cmov, cx8, fxsr, mmx, sse
    Memory: 4k page, physical 392688k(23312k free), swap 1043536k(593212k free)
    vm_info: Java HotSpot(TM) Client VM (1.5.0_07-b03) for windows-x86, built on May 3 2006 01:04:38 by "java_re" with MS VC++ 6.0
    Number 2
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x00000002, pid=4156, tid=6180
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_07-b03 mixed mode)
    # Problematic frame:
    # C 0x00000002
    --------------- T H R E A D ---------------
    Current thread (0x0ead6748): JavaThread "AWT-EventQueue-1" [_thread_in_native, id=6180]
    siginfo: ExceptionCode=0xc0000005, reading address 0x00000002
    Registers:
    EAX=0x1072f2f8, EBX=0x0a7e21e8, ECX=0x02b74c80, EDX=0x7c90eb94
    ESP=0x0f3ef788, EBP=0x0f3ef7a8, ESI=0x1072f2f8, EDI=0x0ead6748
    EIP=0x00000002, EFLAGS=0x00010202
    Top of Stack: (sp=0x0f3ef788)
    0x0f3ef788: 5ee01531 1072f2f8 00000001 00000000
    0x0f3ef798: 02b74273 103315a8 0ec3ff70 00000000
    0x0f3ef7a8: 0f3ef7bc 6d4a2aba 103315a8 0a7e21e8
    0x0f3ef7b8: 00000001 0f3ef800 6d4a1bd3 0ec3ff70
    0x0f3ef7c8: 00000001 0422826f 0ead6808 0f3ef808
    0x0f3ef7d8: 0ea48e10 00000000 00000001 0f3ef7e4
    0x0f3ef7e8: 00000000 0f3ef818 0a7e3030 00000000
    0x0f3ef7f8: 0a7e21e8 0f3ef810 0f3ef838 04222923
    Instructions: (pc=0x00000002)
    0xfffffff2:
    Stack: [0x0f2f0000,0x0f3f0000), sp=0x0f3ef788, free space=1021k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C 0x00000002
    C [jsoundds.dll+0x2aba]
    C [jsoundds.dll+0x1bd3]
    j com.sun.media.sound.DirectAudioDevice.access$1600(JZ)V+2
    j com.sun.media.sound.DirectAudioDevice$DirectDL.flush()V+86
    j com.sun.media.sound.JavaSoundAudioClip.startImpl(Z)V+75
    j com.sun.media.sound.JavaSoundAudioClip.play()V+2
    j sun.applet.AppletAudioClip.play()V+11
    j a.f.a.a(Ljava/lang/String;)V+24
    j a.a.e.b.a(II)V+184
    j a.a.e.a.a(Ljava/awt/event/MouseEvent;)V+48
    j a.c.a.d(Ljava/awt/event/MouseEvent;)V+69
    j a.c.d.mousePressed(Ljava/awt/event/MouseEvent;)V+18
    j java.awt.Component.processMouseEvent(Ljava/awt/event/MouseEvent;)V+54
    j java.awt.Component.processEvent(Ljava/awt/AWTEvent;)V+81
    j java.awt.Container.processEvent(Ljava/awt/AWTEvent;)V+18
    j java.awt.Component.dispatchEventImpl(Ljava/awt/AWTEvent;)V+477
    j java.awt.Container.dispatchEventImpl(Ljava/awt/AWTEvent;)V+42
    j java.awt.Component.dispatchEvent(Ljava/awt/AWTEvent;)V+2
    j java.awt.EventQueue.dispatchEvent(Ljava/awt/AWTEvent;)V+46
    j java.awt.EventDispatchThread.pumpOneEventForHierarchy(ILjava/awt/Component;)Z+233
    j java.awt.EventDispatchThread.pumpEventsForHierarchy(ILjava/awt/Conditional;Ljava/awt/Component;)V+26
    j java.awt.EventDispatchThread.pumpEvents(ILjava/awt/Conditional;)V+4
    j java.awt.EventDispatchThread.pumpEvents(Ljava/awt/Conditional;)V+3
    j java.awt.EventDispatchThread.run()V+9
    v ~StubRoutines::call_stub
    V [jvm.dll+0x86401]
    V [jvm.dll+0xdb172]
    V [jvm.dll+0x862d2]
    V [jvm.dll+0x8602f]
    V [jvm.dll+0xa0bcb]
    V [jvm.dll+0x10bdad]
    V [jvm.dll+0x10bd7b]
    C [msvcrt.dll+0x2a3b0]
    C [kernel32.dll+0xb50b]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j com.sun.media.sound.DirectAudioDevice.nFlush(JZ)V+0
    j com.sun.media.sound.DirectAudioDevice.access$1600(JZ)V+2
    j com.sun.media.sound.DirectAudioDevice$DirectDL.flush()V+86
    j com.sun.media.sound.JavaSoundAudioClip.startImpl(Z)V+75
    j com.sun.media.sound.JavaSoundAudioClip.play()V+2
    j sun.applet.AppletAudioClip.play()V+11
    j a.f.a.a(Ljava/lang/String;)V+24
    j a.a.e.b.a(II)V+184
    j a.a.e.a.a(Ljava/awt/event/MouseEvent;)V+48
    j a.c.a.d(Ljava/awt/event/MouseEvent;)V+69
    j a.c.d.mousePressed(Ljava/awt/event/MouseEvent;)V+18
    j java.awt.Component.processMouseEvent(Ljava/awt/event/MouseEvent;)V+54
    j java.awt.Component.processEvent(Ljava/awt/AWTEvent;)V+81
    j java.awt.Container.processEvent(Ljava/awt/AWTEvent;)V+18
    j java.awt.Component.dispatchEventImpl(Ljava/awt/AWTEvent;)V+477
    j java.awt.Container.dispatchEventImpl(Ljava/awt/AWTEvent;)V+42
    j java.awt.Component.dispatchEvent(Ljava/awt/AWTEvent;)V+2
    j java.awt.EventQueue.dispatchEvent(Ljava/awt/AWTEvent;)V+46
    j java.awt.EventDispatchThread.pumpOneEventForHierarchy(ILjava/awt/Component;)Z+233
    j java.awt.EventDispatchThread.pumpEventsForHierarchy(ILjava/awt/Conditional;Ljava/awt/Component;)V+26
    j java.awt.EventDispatchThread.pumpEvents(ILjava/awt/Conditional;)V+4
    j java.awt.EventDispatchThread.pumpEvents(Ljava/awt/Conditional;)V+3
    j java.awt.EventDispatchThread.run()V+9
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x0eaaadb0 JavaThread "Direct Clip" daemon [_thread_blocked, id=6996]
    0x041b1d58 JavaThread "Direct Clip" daemon [_thread_blocked, id=6856]
    0x0eae7c38 JavaThread "Java Sound Event Dispatcher" daemon [_thread_blocked, id=6632]
    0x0ead69e0 JavaThread "Thread-4" [_thread_blocked, id=6248]
    =>0x0ead6748 JavaThread "AWT-EventQueue-1" [_thread_in_native, id=6180]
    0x0eaa4008 JavaThread "Thread-2" [_thread_blocked, id=6172]
    0x0ea893d0 JavaThread "AWT-EventQueue-0" [_thread_blocked, id=6148]
    0x0ea80990 JavaThread "AWT-Windows" daemon [_thread_in_native, id=4104]
    0x0ea80558 JavaThread "AWT-Shutdown" [_thread_blocked, id=324]
    0x0ea7ade0 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=1624]
    0x041ecbf8 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=3928]
    0x041eb7c8 JavaThread "CompilerThread0" daemon [_thread_blocked, id=6028]
    0x041eab48 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=3088]
    0x041e1f98 JavaThread "Finalizer" daemon [_thread_blocked, id=2888]
    0x041e0b00 JavaThread "Reference Handler" daemon [_thread_blocked, id=2300]
    0x0054cc00 JavaThread "main" [_thread_in_native, id=1356]
    Other Threads:
    0x041dc960 VMThread [id=5156]
    0x041eddd8 WatcherThread [id=6116]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 832K, used 299K [0x062a0000, 0x06380000, 0x06780000)
    eden space 768K, 38% used [0x062a0000, 0x062ea218, 0x06360000)
    from space 64K, 4% used [0x06360000, 0x06360a70, 0x06370000)
    to space 64K, 0% used [0x06370000, 0x06370000, 0x06380000)
    tenured generation total 9784K, used 6061K [0x06780000, 0x0710e000, 0x0a2a0000)
    the space 9784K, 61% used [0x06780000, 0x06d6b588, 0x06d6b600, 0x0710e000)
    compacting perm gen total 8192K, used 5518K [0x0a2a0000, 0x0aaa0000, 0x0e2a0000)
    the space 8192K, 67% used [0x0a2a0000, 0x0a803838, 0x0a803a00, 0x0aaa0000)
    No shared spaces configured.
    Dynamic libraries:
    0x00400000 - 0x00429000      C:\Program Files\Opera\Opera.exe
    0x7c900000 - 0x7c9b0000      C:\WINDOWS\system32\ntdll.dll
    0x7c800000 - 0x7c8f4000      C:\WINDOWS\system32\kernel32.dll
    0x77d40000 - 0x77dd0000      C:\WINDOWS\system32\user32.dll
    0x77f10000 - 0x77f57000      C:\WINDOWS\system32\GDI32.dll
    0x76390000 - 0x763ad000      C:\WINDOWS\system32\IMM32.DLL
    0x77dd0000 - 0x77e6b000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77e70000 - 0x77f01000      C:\WINDOWS\system32\RPCRT4.dll
    0x629c0000 - 0x629c9000      C:\WINDOWS\system32\LPK.DLL
    0x74d90000 - 0x74dfb000      C:\WINDOWS\system32\USP10.dll
    0x77c10000 - 0x77c68000      C:\WINDOWS\system32\msvcrt.dll
    0x59800000 - 0x59817000      C:\Program Files\TuneUp Utilities 2006\WinStylerThemeHelper.dll
    0x77120000 - 0x771ac000      C:\WINDOWS\system32\oleaut32.dll
    0x774e0000 - 0x7761d000      C:\WINDOWS\system32\ole32.dll
    0x679e0000 - 0x67ff4000      C:\Program Files\Opera\Opera.dll
    0x76b40000 - 0x76b6d000      C:\WINDOWS\system32\winmm.dll
    0x763b0000 - 0x763f9000      C:\WINDOWS\system32\comdlg32.dll
    0x77f60000 - 0x77fd6000      C:\WINDOWS\system32\SHLWAPI.dll
    0x773d0000 - 0x774d2000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2180_x-ww_a84f1ff9\COMCTL32.dll
    0x7c9c0000 - 0x7d1d5000      C:\WINDOWS\system32\SHELL32.dll
    0x77c00000 - 0x77c08000      C:\WINDOWS\system32\version.dll
    0x71ad0000 - 0x71ad9000      C:\WINDOWS\system32\wsock32.dll
    0x71ab0000 - 0x71ac7000      C:\WINDOWS\system32\WS2_32.dll
    0x71aa0000 - 0x71aa8000      C:\WINDOWS\system32\WS2HELP.dll
    0x5ad70000 - 0x5ada8000      C:\WINDOWS\system32\uxtheme.dll
    0x10000000 - 0x10006000      C:\DOCUME~1\Igor\LOCALS~1\Temp\IadHide5.dll
    0x74720000 - 0x7476b000      C:\WINDOWS\system32\MSCTF.dll
    0x00af0000 - 0x00af7000      C:\Program Files\Logitech\MouseWare\System\LgWndHk.dll
    0x755c0000 - 0x755ee000      C:\WINDOWS\system32\msctfime.ime
    0x77fe0000 - 0x77ff1000      C:\WINDOWS\system32\Secur32.dll
    0x76fd0000 - 0x7704f000      C:\WINDOWS\system32\CLBCATQ.DLL
    0x77050000 - 0x77115000      C:\WINDOWS\system32\COMRes.dll
    0x76380000 - 0x76385000      C:\WINDOWS\system32\Msimg32.dll
    0x77920000 - 0x77a13000      C:\WINDOWS\system32\SETUPAPI.dll
    0x5ee00000 - 0x5ee1f000      C:\Program Files\AV Vcs 4.0 DIAMOND\Vcs4Hook.dll
    0x33300000 - 0x33310000      C:\Program Files\AV Vcs 4.0 DIAMOND\Vcs4Conf.dll
    0x76bf0000 - 0x76bfb000      C:\WINDOWS\system32\PsApi.dll
    0x02cd0000 - 0x02cdb000      C:\Program Files\Common Files\Logitech\Scrolling\LgMsgHk.dll
    0x76080000 - 0x760e5000      C:\WINDOWS\system32\MSVCP60.dll
    0x71a50000 - 0x71a8f000      C:\WINDOWS\System32\mswsock.dll
    0x76f20000 - 0x76f47000      C:\WINDOWS\system32\DNSAPI.dll
    0x76d60000 - 0x76d79000      C:\WINDOWS\system32\iphlpapi.dll
    0x662b0000 - 0x66308000      C:\WINDOWS\system32\hnetcfg.dll
    0x71a90000 - 0x71a98000      C:\WINDOWS\System32\wshtcpip.dll
    0x76fc0000 - 0x76fc6000      C:\WINDOWS\system32\rasadhlp.dll
    0x6d6c0000 - 0x6d857000      C:\Program Files\Java\jre1.5.0_07\bin\client\jvm.dll
    0x6d280000 - 0x6d288000      C:\Program Files\Java\jre1.5.0_07\bin\hpi.dll
    0x6d690000 - 0x6d69c000      C:\Program Files\Java\jre1.5.0_07\bin\verify.dll
    0x6d300000 - 0x6d31d000      C:\Program Files\Java\jre1.5.0_07\bin\java.dll
    0x6d6b0000 - 0x6d6bf000      C:\Program Files\Java\jre1.5.0_07\bin\zip.dll
    0x6d000000 - 0x6d167000      C:\Program Files\Java\jre1.5.0_07\bin\awt.dll
    0x73000000 - 0x73026000      C:\WINDOWS\system32\WINSPOOL.DRV
    0x73760000 - 0x737a9000      C:\WINDOWS\system32\ddraw.dll
    0x73bc0000 - 0x73bc6000      C:\WINDOWS\system32\DCIMAN32.dll
    0x73940000 - 0x73a10000      C:\WINDOWS\system32\D3DIM700.DLL
    0x6d240000 - 0x6d27f000      C:\Program Files\Java\jre1.5.0_07\bin\fontmanager.dll
    0x74e30000 - 0x74e9c000      C:\WINDOWS\system32\RICHED20.DLL
    0x6d4c0000 - 0x6d4d3000      C:\Program Files\Java\jre1.5.0_07\bin\net.dll
    0x6d4e0000 - 0x6d4e9000      C:\Program Files\Java\jre1.5.0_07\bin\nio.dll
    0x76fb0000 - 0x76fb8000      C:\WINDOWS\System32\winrnr.dll
    0x76f60000 - 0x76f8c000      C:\WINDOWS\system32\WLDAP32.dll
    0x6d470000 - 0x6d495000      C:\Program Files\Java\jre1.5.0_07\bin\jsound.dll
    0x6d4a0000 - 0x6d4a7000      C:\Program Files\Java\jre1.5.0_07\bin\jsoundds.dll
    0x73f10000 - 0x73f6c000      C:\WINDOWS\system32\DSOUND.dll
    0x72d20000 - 0x72d29000      C:\WINDOWS\system32\wdmaud.drv
    0x76c30000 - 0x76c5e000      C:\WINDOWS\system32\WINTRUST.dll
    0x77a80000 - 0x77b14000      C:\WINDOWS\system32\CRYPT32.dll
    0x77b20000 - 0x77b32000      C:\WINDOWS\system32\MSASN1.dll
    0x76c90000 - 0x76cb8000      C:\WINDOWS\system32\IMAGEHLP.dll
    0x72d10000 - 0x72d18000      C:\WINDOWS\system32\msacm32.drv
    0x77be0000 - 0x77bf5000      C:\WINDOWS\system32\MSACM32.dll
    0x77bd0000 - 0x77bd7000      C:\WINDOWS\system32\midimap.dll
    0x73ee0000 - 0x73ee4000      C:\WINDOWS\system32\KsUser.dll
    VM Arguments:
    jvm_args: abort exit -Xbootclasspath/p:C:\Program Files\Opera\Classes\Opera.jar;C:\Program Files\Opera\Plugins;C:\Program Files\Opera\Program\Plugins;;C:\Program Files\Opera\Program\Plugins\npdrmv2.zip;C:\Program Files\Opera\Program\Plugins\npds.zip;C:\Program Files\Java\jre1.5.0_07\lib\jaws.jar;C:\Program Files\Java\jre1.5.0_07\lib\plugin.jar -Djava.security.policy=C:\Program Files\Opera\Classes\Opera.policy -Dbrowser.opera.classpath=C:\Program Files\Opera\Classes\Opera.jar
    java_command: <unknown>
    Launcher Type: generic
    Environment Variables:
    CLASSPATH=C:\Program Files\Java\jre1.5.0_04\lib\ext\QTJava.zip
    PATH=C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Java\jdk1.5.0\bin;C:\Program Files\cvsnt;C:\Program Files\QuickTime\QTSystem\;C:\Program Files\SSH Secure Shell
    USERNAME=Igor
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 6 Model 10 Stepping 0, AuthenticAMD
    --------------- S Y S T E M ---------------
    OS: Windows XP Build 2600 Service Pack 2
    CPU:total 1 family 6, cmov, cx8, fxsr, mmx, sse
    Memory: 4k page, physical 392688k(28360k free), swap 1043536k(597608k free)
    vm_info: Java HotSpot(TM) Client VM (1.5.0_07-b03) for windows-x86, built on May 3 2006 01:04:38 by "java_re" with MS VC++ 6.0
    Number 3
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x00000001, pid=16764, tid=19728
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_07-b03 mixed mode)
    # Problematic frame:
    # C 0x00000001
    --------------- T H R E A D ---------------
    Current thread (0x100ace50): JavaThread "Direct Clip" daemon [_thread_in_native, id=19728]
    siginfo: ExceptionCode=0xc0000005, reading address 0x00000001
    Registers:
    EAX=0x00000000, EBX=0x12db0954, ECX=0x7c802600, EDX=0x12db0a90
    ESP=0x15d1f8a0, EBP=0x000000e0, ESI=0x10acf560, EDI=0x15373c14
    EIP=0x00000001, EFLAGS=0x00010202
    Top of Stack: (sp=0x15d1f8a0)
    0x15d1f8a0: 3350139d 10acf560 40000001 10acf560
    0x15d1f8b0: 12db0954 33509140 5ee0af0b 04611fc0
    0x15d1f8c0: 10acf560 01a62128 10acf560 000000e0
    0x15d1f8d0: 15373c14 00000000 00000002 5ee0d1ca
    0x15d1f8e0: 000000e0 5ee0d6ab 00000070 00000070
    0x15d1f8f0: 10acf560 10acf498 5ee013ea 10acf560
    0x15d1f900: 15373c14 000000e0 00000000 1010fff0
    0x15d1f910: 15d1f940 00000000 15d1f970 15d1f978
    Instructions: (pc=0x00000001)
    0xfffffff1:
    Stack: [0x15c20000,0x15d20000), sp=0x15d1f8a0, free space=1022k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C 0x00000001
    [error occurred during error reporting, step 120, id 0xc0000005]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    J com.sun.media.sound.DirectAudioDevice.nIsStillDraining(JZ)Z
    J com.sun.media.sound.DirectAudioDevice$DirectDL.drain()V
    j com.sun.media.sound.DirectAudioDevice$DirectClip.run()V+261
    j java.lang.Thread.run()V+11
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    =>0x100ace50 JavaThread "Direct Clip" daemon [_thread_in_native, id=19728]
    0x10109620 JavaThread "Direct Clip" daemon [_thread_in_native, id=21624]
    0x101ca710 JavaThread "Direct Clip" daemon [_thread_blocked, id=22164]
    0x10109498 JavaThread "Direct Clip" daemon [_thread_blocked, id=21884]
    0x10093310 JavaThread "Java Sound Event Dispatcher" daemon [_thread_blocked, id=22892]
    0x10010138 JavaThread "Thread-28" [_thread_blocked, id=20452]
    0x10119e10 JavaThread "Thread-10" [_thread_blocked, id=21684]
    0x1006c410 JavaThread "Thread-8" [_thread_in_native, id=21000]
    0x149c8440 JavaThread "Thread-7" [_thread_blocked, id=21392]
    0x10116f58 JavaThread "Thread-6" [_thread_blocked, id=21680]
    0x100f7dd0 JavaThread "Thread-5" [_thread_blocked, id=21628]
    0x057efa70 JavaThread "Thread-4" [_thread_blocked, id=20956]
    0x10064bb0 JavaThread "AWT-EventQueue-1" [_thread_blocked, id=19848]
    0x10062f80 JavaThread "Thread-2" [_thread_blocked, id=21276]
    0x10059c60 JavaThread "AWT-EventQueue-0" [_thread_blocked, id=18708]
    0x10051220 JavaThread "AWT-Windows" daemon [_thread_in_native, id=18700]
    0x10050de8 JavaThread "AWT-Shutdown" [_thread_blocked, id=18672]
    0x1004b670 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=18676]
    0x057ed480 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=18648]
    0x057ec048 JavaThread "CompilerThread0" daemon [_thread_blocked, id=18544]
    0x057eb3c8 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=18624]
    0x057e1e48 JavaThread "Finalizer" daemon [_thread_blocked, id=18616]
    0x057e13a8 JavaThread "Reference Handler" daemon [_thread_blocked, id=18612]
    0x0054de28 JavaThread "main" [_thread_in_native, id=16812]
    Other Threads:
    0x057a2150 VMThread [id=18600]
    0x057ee668 WatcherThread [id=18652]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 1088K, used 322K [0x07820000, 0x07940000, 0x07d00000)
    eden space 1024K, 28% used [0x07820000, 0x07869090, 0x07920000)
    from space 64K, 48% used [0x07920000, 0x07927b18, 0x07930000)
    to space 64K, 0% used [0x07930000, 0x07930000, 0x07940000)
    tenured generation total 13000K, used 10737K [0x07d00000, 0x089b2000, 0x0b820000)
    the space 13000K, 82% used [0x07d00000, 0x0877c780, 0x0877c800, 0x089b2000)
    compacting perm gen total 8192K, used 7130K [0x0b820000, 0x0c020000, 0x0f820000)
    the space 8192K, 87% used [0x0b820000, 0x0bf16aa0, 0x0bf16c00, 0x0c020000)
    No shared spaces configured.
    Dynamic libraries:
    0x00400000 - 0x00429000      C:\Program Files\Opera\Opera.exe
    0x7c900000 - 0x7c9b0000      C:\WINDOWS\system32\ntdll.dll
    0x7c800000 - 0x7c8f4000      C:\WINDOWS\system32\kernel32.dll
    0x77d40000 - 0x77dd0000      C:\WINDOWS\system32\user32.dll
    0x77f10000 - 0x77f57000      C:\WINDOWS\system32\GDI32.dll
    0x76390000 - 0x763ad000      C:\WINDOWS\system32\IMM32.DLL
    0x77dd0000 - 0x77e6b000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77e70000 - 0x77f01000      C:\WINDOWS\system32\RPCRT4.dll
    0x629c0000 - 0x629c9000      C:\WINDOWS\system32\LPK.DLL
    0x74d90000 - 0x74dfb000      C:\WINDOWS\system32\USP10.dll
    0x77c10000 - 0x77c68000      C:\WINDOWS\system32\msvcrt.dll
    0x59800000 - 0x59817000      C:\Program Files\TuneUp Utilities 2006\WinStylerTh

  • Jmc.dll crashes java.exe

    First of thanks Sun's engineers for hard work on Java and JavaFX! I really enjoyed the features and demos from javafx.com.
    Unfortunatly all of the demos involving media playback are crashing java.exe with jmc.dll being guilty (probably access violation - jmc.dll in the error dialog reports 0.0.0.0 version - but not sure). Well, I think it is my system's fault, because when I got rid of all codecs that could play mp3, java.exe stopped crashing (at least for DraggableMP3Player demo, SimpleVideoPlayer crashes without writing hs_err), but gave me MediaUnsupportedException. Regarding fixing my system - I'd like to avoid the pleasure of reinstalling Windows and I think it would be good for others having this problem to nail the cause of it. Could you explain how jmc.dll is dealing with platform codecs? How it checks what is installed? Does anyone else seen jmc.dll crashing java? Could it be hardware issue (I have nforce2 sound card)?
    I've created issue [http://javafx-jira.kenai.com/browse/RT-2530] if you have the same problem please vote for it (you first need to register for free :))

    I sure have put some work in this bug. I hope this will be gone soon :). I'm somewhat surprised that nobody seen it beside me - no votes, no blogs about it. But UnsupportedMediaException is known for sure and I believe it is related (that's why I've voted for it). Thanks for all your sweat, tears and blood you put in JavaFX! :)

  • Java.exe crashing with Dr Watson access violation at address 500bf974

    We have been sucessfully runing an application delveloped with JDK 1.2.2 on a Pentium III machine with Windows NT 4 SP5 (384Mb RAM). I have replaced the Pentium III machine with a pentium 4 with 1Gb RAM (still running NT4 SP5). In fact, I simply took the HDD out of the PIII and installed it in the P4.
    All applications work correctly (Sybiz Vision, MS Office 97 suite), however, when I go to run the java application is crashes and a Dr Watson Access Violation in java.exe error is generated.
    I have:
    1. Reinstalled the JDK 1.2.2.
    2. Confirmed that all hardware drivers (new NIC, Video and Sound Card) were updated with the appropriate versions from the hardware suppliers web pages.
    3. Read thru previous posts on this site (and others) for similar errors, but have only been able to find similar questions.
    4. Lowered the video card display colours to 256 rather than 65,536.
    None of the above have made any difference.
    I hope this question will prompt the java/Dr Watson gurus out there to help me resolve this frustrating problem.
    Thanks in anticipation.
    Greg

    Consider getting 1.2.2_014, or whatever is the latest version of 1.2.2. I think there were some issues with Pentium IV processors which were fixed in one of the later incarnations of the JDK.
    You can get the latest version of 1.2.2 from the following url:
    http://java.sun.com/products/jdk/1.2/download.html

  • Java.exe crash with MS Application Verifier

    Dear Java users,
    I developed a Java application to be deployed on windows server 2003. But when run the application with Application Verifier to check for runtime resource handling, the java.exe crashed with messsage: java.exe has encountered a problem and needs to close. We are sorry for the inconvenience.
    I tried several times with JRE1.4 and 1.5 but get the same result.
    Any advice should be appreciated.
    Thanks.
    Message was edited by:
    khanhtran

    Jim,
    This question is best suited to the Oracle9i Application Server forum.
    Thanks

  • After Java update to SE6 1.6.0_29 ,getting applet crash

    I have a MacBook Pro with 10.7.2 and installed Java update to 1.6.0_29  now my sample 64 bit browser application are showing crash report alert every time of launch. Here's the crash showing Java NAIP2 webpluginhost crash. Any help would better? In Safari it is working fine.
    My Sample browser application is using webkit framework. It is a 64 bit application.I have tried to lauch a webvpn SSL url in the my browser application.This URL is related with Juniper Network connect. It will download and launch the Juniper Network connect app(VPN Client),by using that we can connect to corporate network.
    Every thing is working as expected ,, but intermittently i am getting java applet crash (Java NAIP2 webpluginhost crash) report from my appliaction.Ii is look like my juniper url is using that Java applet,that is crashing every time. i dont want that crash report error message ,, how can i avoid or block that crash .. Any help?
    Thanks
    Hary

    You might want to ask on the Chinese Mac list too:
    http://groups.google.com/group/chinesemac/

  • IE 8 Java Applet Crashing

    Hi,
    We are using IE 7 and currently we have upgraded to IE 8. But when trying the applications in IE 8, we are facing serious of problems like slowness, page crashing and Java applets crashing. The same pages is working weel on IE 7 but in IE 8 these pages and Java applets are crashing and showing script error as "Object doesn't support this method" for applets.
    How to solve this? We dont have option to degrade the browser.
    Regards,
    Senthil

    I'm with Christian - the error message would indicate you are attempting to address the applet in javascript before it is created and available for scripting.  The html body onload or script outside functions that calls either the getQueryObject() or getGridObject() methods.
    The fact that it worked in IE7 but not in IE8 could mean that timing that worked before is no longer the case, as would also occur if internet speeds changed between client and server, or perhaps a different java plug in.  Inconsistencies and pages that work in some cases but not others typically point at the javascript.
    A test would be to isolate the suspect applet objects and put them individually on their own on a web page(s) to see if the new browser renders them properly.

  • Java.exe crash on P4 machine

    Is anyone aware of issues with running jdk1.2.2_008 or later on Pentium 4 machines?
    I installed a app server on Windows 2000 on my home machine and when I try and start it, a Windows popup window appears saying java.exe has generated errors. Where should I look for a more detailed error message?
    The software runs fine on my laptop running 2000 and the only major difference I can think of is the Pentium 4 architecture.
    Any help appreciated!

    Have you found a solution to this problem? I am running java applications on numerous IBM desktops (not P4's)running Windows 2000, but have tried installing JDK1.2.2_006 on a Dell desktop with P4 processor and java.exe aborts with exception nr c0000005 (access violation). I have been cussing Dell, but is it the P4?

  • Java.exe crash upon O9iAS startup

    When OracleASHome102HTTPServer starts I get a Win2000 access exception c0000005 on java.exe. Little DrWatson window pops up... O9i logs Logs show nothing. Only drwatson shows problem info, assembler dump, ets...
    Anyone know what's wrong? I've got O9iAS 1.0.2.0, Win2000SP1, Pentium 4, 1.4GHz, 512Mg RAM?
    I know there is a problem with the jre JIT compiler on the P4. Got around this during O9iAS installation by using the '-nojit' parameter on all invocations of jrew.exe and jre.exe. Is my java.exe problem still with the P4 chip?
    Regards,
    null

    Jim,
    This question is best suited to the Oracle9i Application Server forum.
    Thanks

  • Java.exe crashes with windows access exception

    When OracleASHome102HTTPServer starts I get a Win2000 access exception c0000005 on java.exe. Little DrWatson window pops up... O9i logs Logs show nothing. Only drwatson shows problem info, assembler dump, ets...
    Anyone know what's wrong? I've got O9iAS 1.0.2.0, Win2000SP1, Pentium 4, 1.4GHz, 512Mg RAM?
    I know there is a problem with the jre JIT compiler on the P4. Got around this during O9iAS installation by using the '-nojit' parameter on all invocations of jrew.exe and jre.exe. Is my java.exe problem still with the P4 chip?
    Regards,
    Jim Anderson

    solution
    I have solved the problem,and the method as follows:
    1.look for the dll file:symcjit.dll(the path is %oracle_home%\Apache\jdk\jre\bin) ,
    2.change the extension to .old
    3.restart the httpServer
    4.ok
    try it,and hope you good luck

  • Applet crashes in MAC OS X 10.7.4 with JRE 1.7.0_07 while printing

    Our appplication uses the java applet to print the application data to default printer. We recommended our consumer to install latest jre (1.7.0_07) to run applet from our site.
    Since then we are facing issues in MAC OS X 10.7.3 and above. The applet crashes and throws following error in MAC console. There was no error in application or java console.
    We uninstalled java 1.7.0.0_07 and restore the apple recommended java 1.6.0_35. After that the applet works fine(java 1.6.0_35) to print the applciation data in MAC OS X 10.7.4.
    The browser pops up with error message says "Error While Printing"
    Application Specific Information:
    objc[2508]: garbage collection is OFF
    *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Printing failed because PMSessionEndDocumentNoDialog() returned -30871.'
    *** First throw call stack:
         0 CoreFoundation 0x00007fff8a835f56 __exceptionPreprocess + 198
         1 libobjc.A.dylib 0x00007fff90651d5e objc_exception_throw + 43
         2 CoreFoundation 0x00007fff8a835d8a +[NSException raise:format:arguments:] + 106
         3 CoreFoundation 0x00007fff8a835d14 +[NSException raise:format:] + 116
         4 AppKit 0x00007fff9577547f -[NSPrintSpoolingGraphicsContext endDocument] + 177
         5 AppKit 0x00007fff95775795 -[NSPrintSpoolingGraphicsContext dealloc] + 42
         6 libobjc.A.dylib 0x00007fff9064a03c ZN12GLOBAL__N_119AutoreleasePoolPage3popEPv + 434
         7 CoreFoundation 0x00007fff8a7c3915 _CFAutoreleasePoolPop + 37
         8 liblwawt.dylib 0x000000010c74b8db Java_sun_lwawt_macosx_CPrinterJob_printLoop + 165
         9 ??? 0x000000010312af90 0x0 + 4346523536
         10 ??? 0x000000010311f450 0x0 + 4346475600
         11 ??? 0x000000010311f158 0x0 + 4346474840
         12 ??? 0x000000010311f158 0x0 + 4346474840
    Are there any issues with MAC 10.7.3 and above with applet running in jre 1.7.0_07 to print the data to printer?

    Step one is to ensure that you have a bootable backup/clone or a verified Time Machine backup of 10.7.3.
    Step two is to manually download and install the 10.7.3 COMBO update.
    Step three, if these are successful, is to manually download and install the 10.7.4 COMBO update, repair permissions, and restart.
    These should fix the problem with the installer. As for the games, i've not a clue since I don't run any on my computers.

  • Some AWN applets crashes after update

    I've just updated avant-window-navigator and awn-extras-applets.
    After update some of applets like "Notitfication Area" applet or "Places" applet crashes with this errors
    awn-applet: symbol lookup error: /usr/lib/awn/applets/places/places.so: undefined symbol: _
    awn-applet: symbol lookup error: /usr/lib/awn/applets/notification-area/notification-area.so: undefined symbol: _
    Here is the output of ldd for notification-area library
    $ ldd /usr/lib/awn/applets/notification-area/notification-area.so
    linux-vdso.so.1 => (0x00007fff8519c000)
    libawn.so.1 => /usr/lib/libawn.so.1 (0x00007fdb5e8a3000)
    libgthread-2.0.so.0 => /usr/lib/libgthread-2.0.so.0 (0x00007fdb5e6a1000)
    libdesktop-agnostic.so.0 => /usr/lib/libdesktop-agnostic.so.0 (0x00007fdb5e499000)
    libdesktop-agnostic-vfs.so.0 => /usr/lib/libdesktop-agnostic-vfs.so.0 (0x00007fdb5e28c000)
    libdesktop-agnostic-cfg.so.0 => /usr/lib/libdesktop-agnostic-cfg.so.0 (0x00007fdb5e074000)
    libdesktop-agnostic-fdo.so.0 => /usr/lib/libdesktop-agnostic-fdo.so.0 (0x00007fdb5de6f000)
    libdesktop-agnostic-ui.so.0 => /usr/lib/libdesktop-agnostic-ui.so.0 (0x00007fdb5dc5f000)
    libgtk-x11-2.0.so.0 => /usr/lib/libgtk-x11-2.0.so.0 (0x00007fdb5d630000)
    libdbus-glib-1.so.2 => /usr/lib/libdbus-glib-1.so.2 (0x00007fdb5d408000)
    libgmodule-2.0.so.0 => /usr/lib/libgmodule-2.0.so.0 (0x00007fdb5d204000)
    libgdk-x11-2.0.so.0 => /usr/lib/libgdk-x11-2.0.so.0 (0x00007fdb5cf51000)
    libatk-1.0.so.0 => /usr/lib/libatk-1.0.so.0 (0x00007fdb5cd2d000)
    libgio-2.0.so.0 => /usr/lib/libgio-2.0.so.0 (0x00007fdb5c9e0000)
    libpangoft2-1.0.so.0 => /usr/lib/libpangoft2-1.0.so.0 (0x00007fdb5c7b3000)
    libfreetype.so.6 => /usr/lib/libfreetype.so.6 (0x00007fdb5c513000)
    libfontconfig.so.1 => /usr/lib/libfontconfig.so.1 (0x00007fdb5c2dd000)
    libpangocairo-1.0.so.0 => /usr/lib/libpangocairo-1.0.so.0 (0x00007fdb5c0d0000)
    libgdk_pixbuf-2.0.so.0 => /usr/lib/libgdk_pixbuf-2.0.so.0 (0x00007fdb5bead000)
    libpango-1.0.so.0 => /usr/lib/libpango-1.0.so.0 (0x00007fdb5bc62000)
    libcairo.so.2 => /usr/lib/libcairo.so.2 (0x00007fdb5b967000)
    libdbus-1.so.3 => /usr/lib/libdbus-1.so.3 (0x00007fdb5b722000)
    libpthread.so.0 => /lib/libpthread.so.0 (0x00007fdb5b506000)
    librt.so.1 => /lib/librt.so.1 (0x00007fdb5b2fe000)
    libgobject-2.0.so.0 => /usr/lib/libgobject-2.0.so.0 (0x00007fdb5b0af000)
    libglib-2.0.so.0 => /usr/lib/libglib-2.0.so.0 (0x00007fdb5adbb000)
    libX11.so.6 => /usr/lib/libX11.so.6 (0x00007fdb5aa82000)
    libm.so.6 => /lib/libm.so.6 (0x00007fdb5a78c000)
    libc.so.6 => /lib/libc.so.6 (0x00007fdb5a3eb000)
    libpcre.so.1 => /usr/lib/libpcre.so.1 (0x00007fdb5a191000)
    libXfixes.so.3 => /usr/lib/libXfixes.so.3 (0x00007fdb59f89000)
    libdl.so.2 => /lib/libdl.so.2 (0x00007fdb59d84000)
    libXext.so.6 => /usr/lib/libXext.so.6 (0x00007fdb59b71000)
    libXrender.so.1 => /usr/lib/libXrender.so.1 (0x00007fdb59966000)
    libXinerama.so.1 => /usr/lib/libXinerama.so.1 (0x00007fdb59762000)
    libXi.so.6 => /usr/lib/libXi.so.6 (0x00007fdb59553000)
    libXrandr.so.2 => /usr/lib/libXrandr.so.2 (0x00007fdb5934a000)
    libXcursor.so.1 => /usr/lib/libXcursor.so.1 (0x00007fdb5913f000)
    libXcomposite.so.1 => /usr/lib/libXcomposite.so.1 (0x00007fdb58f3c000)
    libXdamage.so.1 => /usr/lib/libXdamage.so.1 (0x00007fdb58d39000)
    libffi.so.6 => /usr/lib/libffi.so.6 (0x00007fdb58b30000)
    libz.so.1 => /usr/lib/libz.so.1 (0x00007fdb5891a000)
    libresolv.so.2 => /lib/libresolv.so.2 (0x00007fdb58703000)
    libbz2.so.1.0 => /usr/lib/libbz2.so.1.0 (0x00007fdb584f2000)
    libexpat.so.1 => /usr/lib/libexpat.so.1 (0x00007fdb582c8000)
    libpng15.so.15 => /usr/lib/libpng15.so.15 (0x00007fdb5809a000)
    libpixman-1.so.0 => /usr/lib/libpixman-1.so.0 (0x00007fdb57e15000)
    libxcb-shm.so.0 => /usr/lib/libxcb-shm.so.0 (0x00007fdb57c13000)
    libxcb-render.so.0 => /usr/lib/libxcb-render.so.0 (0x00007fdb57a09000)
    libxcb.so.1 => /usr/lib/libxcb.so.1 (0x00007fdb577eb000)
    /lib/ld-linux-x86-64.so.2 (0x00007fdb5ed30000)
    libXau.so.6 => /usr/lib/libXau.so.6 (0x00007fdb575e6000)
    libXdmcp.so.6 => /usr/lib/libXdmcp.so.6 (0x00007fdb573e0000)
    What I have to do with this problem?

    If you don't already have a current backup, back up all data, then reinstall the OS. You don't need to erase the startup volume, and you won't need the backup unless something goes wrong. If the system was upgraded from an older version of OS X, you may need the Apple ID and password you used to upgrade.
    There are ways to back up a computer that isn't fully functional. Ask if you need guidance.
    If you installed the Java runtime distributed by Apple and still need it, you'll have to reinstall it. The same goes for Xcode.

  • Turning a Java applett into a  *.exe

    How do you turn a Java applett into an *.exe?

    Have a look at http://gcc.gnu.org/java/. Its not complete, and I've never tried it on Windows, but it kinda works for linux.
    The other thing you could do is create a C/C++ wrapper that starts a JVM and runs your main class. http://www.kcmultimedia.com/javaserv/ has some GPL code for doing this for an NT service, but the principle is the same for non-service apps.

  • Java.exe vs iexplore.exe

    We're running Java 1.6.0_16 on our machines to access Oracle Forms for our E-Business system.
    We are running the Java applet with the "next generation Java Plug-in" disabled (as this causes issues within our system)
    I've noticed that our install is seemingly not consistent.
    Some users who launch java (via the program) while getting into the forms, get an "iexplore.exe" entry in their "control panel - performance" while others get a "java.exe" entry.
    The users who get the java.exe are more prone to crashes and "loss of focus" when in the forms.
    ALL users get the "java.exe" entry in "control panel - performance" if the next generation java plug-in is enabled.
    How is it possible that the same install can lanch in two different ways?
    It almost seems like the action of disabling java plug-in is not being recognised.
    How do we remedy this situation to only get the "iexplore.exe" running in control panel?

    No, I was recommending you launch the applet using javaws, then close the browser, since the browser is entirely irrelevant to the JWS launched applet, which is now free floating on the screen like a JFrame (e.g. outside a web page/browser).
    Not on our application I'm afraid.
    We have the initial html/xml JTF Framework page a user logs into, there they have a list of their responsibilities, some of these responsibilites will take them into other html/xml pages, others will launch java and into the core application.
    As the java is launching another web page is opened, it's almost like a placer, un-interactive window, which then leads to the actual app running java opening.
    So you basically have 3 windows open, the initial web page, a "placer" web page and the actual app.
    We can close the initial web page without a problem, but this is a stable window. When we have crashes it is this window that remains unscathed by the crash, and what is used to launch the app running java again.
    If we close the second html "placer" page it will immediately crash the app running java. In fact it has a disclaimer saying:
    IMPORTANT: Do not close this window. Closing this window will cause Oracle Forms-based applications to close immediately, losing any unsaved data. This window may be minimized safely at any time and may be closed once all work in Oracle Forms-based applications is complete.
    Closing the actual java app will naturally leave the other two windows open.
    My problem is that during the launch process, some users get a java.exe program launching while others the aforementioned iexplore.exe. In both cases Java is running and the app is functioning correctly, it's just that where java.exe is being displayed as the active program, there seems to be a tendency for the program to crash, while those displaying iexplore.exe are more stable.
    I'm trying to understand why the exact same call would in some situations launch iexplore.exe and in others java.exe.
    As far as I can see, setup and install is identical. As previously stated, if "next-generation plug-in" (in Java Control Panel) is enabled, then the entry will always read java.exe.
    My thoughts are that depite this next generation plug-in being disabled, this is not being picked up as being disabled in some region of the java and is causing us instability.

  • Java.exe (j2re1.4.0) can't init C:\WINNT\system32\DDRAW.dll

    Our app is running on jre 1.3.1_01. When we try j2re 1.4.0 we get the following dialog:
    java.exe - DLL Initialization Failed
    Initialization of the dynamic link library C:\WINNT\System32\ddraw.dll failed. The process is terminating abnormally.
    It occurs when the application attempts to paint the splash screen for our server application. It also occurs with our client GUI.
    This is the same for 6 different machines running Windows NT 4.0 service packs 5 and 6.
    I don't want to make this a bug yet because it seems to work on my laptop with exactly the same software. We have sync'd the environment and verified the classpaths.

    I've seen potentially related problems on NT4-SP6a with J2RE 1.4.2_01. I did not get the "can't init" error that you are discussing, but I have seen other problems related to "ddraw.dll". When I run Swing applications that use viewports, scrolling causes very bad repainting problems. I think this is related to "ddraw.dll" because of the "BIT_BLIT" optimization for repainting.
    Also, when I ran the Java application after running some other sequence of applications (I have not been able to duplicate the startup sequence), Java crashed with the message below rather than repainting poorly. This crash was repeatable -- I repeated it four times with identical exception traces. The stack trace indicates that the failure is in "blitWindowGraphics", and the problem was detected inside of "ddraw.dll".
    I'm including this in this thred in the hopes that somebody can find a thread of commonality and fix the root cause of these "ddraw.dll" problems.
    NOTE: I have not found a workaround to the problems I'm having --- I cannot run Java GUI applications on this PC.
    An unexpected exception has been detected in native code outside the VM.
    Unexpected Signal : EXCEPTION_ACCESS_VIOLATION (0xc0000005) occurred at PC=0x77132F58
    Function=DllCanUnloadNow+0x665
    Library=C:\WINNT\System32\ddraw.dll
    Current Java thread:
         at sun.awt.windows.Win32Renderer.devCopyArea(Native Method)
         at sun.awt.windows.Win32SurfaceData.copyArea(Unknown Source)
         at sun.java2d.SunGraphics2D.copyArea(Unknown Source)
         at javax.swing.JViewport.blitWindowGraphics(Unknown Source)
         at javax.swing.JViewport.blitDoubleBuffered(Unknown Source)
         at javax.swing.JViewport.windowBlitPaint(Unknown Source)
         at javax.swing.JViewport.setViewPosition(Unknown Source)
         at com.sun.javaws.ui.general.GeneralUtilities$4.run(Unknown Source)
         at java.awt.event.InvocationEvent.dispatch(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.Dialog$1.run(Unknown Source)
         at java.awt.Dialog.show(Unknown Source)
         at com.sun.javaws.ui.general.GeneralUtilities.showAboutDialog(Unknown Source)
         at com.sun.javaws.ui.player.Player$13.actionPerformed(Unknown Source)
         at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
         at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
         at javax.swing.AbstractButton.doClick(Unknown Source)
         at javax.swing.plaf.basic.BasicMenuItemUI.doClick(Unknown Source)
         at javax.swing.plaf.basic.BasicMenuItemUI$MouseInputHandler.mouseReleased(Unknown Source)
         at java.awt.Component.processMouseEvent(Unknown Source)
         at java.awt.Component.processEvent(Unknown Source)
         at java.awt.Container.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Window.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    Dynamic libraries:
    0x00400000 - 0x00407000      D:\jre\j2re1.4.2_01\bin\javaw.exe
    0x77F60000 - 0x77FBE000      C:\WINNT\System32\ntdll.dll
    0x77DC0000 - 0x77DFF000      C:\WINNT\system32\ADVAPI32.dll
    0x77F00000 - 0x77F5E000      C:\WINNT\system32\KERNEL32.dll
    0x77E70000 - 0x77EC5000      C:\WINNT\system32\USER32.dll
    0x77ED0000 - 0x77EFC000      C:\WINNT\system32\GDI32.dll
    0x77E10000 - 0x77E67000      C:\WINNT\system32\RPCRT4.dll
    0x78000000 - 0x78040000      C:\WINNT\system32\MSVCRT.dll
    0x08000000 - 0x08136000      D:\jre\j2re1.4.2_01\bin\client\jvm.dll
    0x77FD0000 - 0x77FFA000      C:\WINNT\System32\WINMM.dll
    0x77FC0000 - 0x77FC8000      C:\WINNT\System32\mmdrv.dll
    0x74BD0000 - 0x74BE7000      C:\WINNT\System32\SNDBLST.DLL
    0x716F0000 - 0x7177A000      C:\WINNT\system32\COMCTL32.dll
    0x10000000 - 0x10007000      D:\jre\j2re1.4.2_01\bin\hpi.dll
    0x00910000 - 0x0091E000      D:\jre\j2re1.4.2_01\bin\verify.dll
    0x00920000 - 0x00938000      D:\jre\j2re1.4.2_01\bin\java.dll
    0x00940000 - 0x0094D000      D:\jre\j2re1.4.2_01\bin\zip.dll
    0x18270000 - 0x1837F000      D:\jre\j2re1.4.2_01\bin\awt.dll
    0x77C00000 - 0x77C18000      C:\WINNT\System32\WINSPOOL.DRV
    0x76AB0000 - 0x76AB5000      C:\WINNT\System32\IMM32.dll
    0x77B20000 - 0x77BD1000      C:\WINNT\system32\ole32.dll
    0x18380000 - 0x183D0000      D:\jre\j2re1.4.2_01\bin\fontmanager.dll
    0x77130000 - 0x77156000      C:\WINNT\System32\ddraw.dll
    0x18650000 - 0x1865A000      D:\jre\j2re1.4.2_01\javaws\javawspl.dll
    0x77C40000 - 0x77D7C000      C:\WINNT\system32\SHELL32.dll
    0x18C40000 - 0x18C5E000      D:\jre\j2re1.4.2_01\bin\jpeg.dll
    0x18C60000 - 0x18C6F000      D:\jre\j2re1.4.2_01\bin\net.dll
    0x776B0000 - 0x776C4000      C:\WINNT\system32\WS2_32.dll
    0x776A0000 - 0x776A7000      C:\WINNT\system32\WS2HELP.dll
    0x74FF0000 - 0x74FFE000      C:\WINNT\System32\rnr20.dll
    0x77660000 - 0x7766F000      C:\WINNT\system32\msafd.dll
    0x77690000 - 0x77699000      C:\WINNT\System32\wshtcpip.dll
    0x776D0000 - 0x776D8000      C:\WINNT\system32\WSOCK32.dll
    0x71280000 - 0x71286000      C:\WINNT\system32\MSIDLE.DLL
    0x77BF0000 - 0x77BF7000      C:\WINNT\System32\rpcltc1.dll
    0x75360000 - 0x75367000      C:\WINNT\System32\rasadhlp.dll
    0x76AC0000 - 0x76ADD000      C:\WINNT\System32\imagehlp.dll
    0x731B0000 - 0x731BA000      C:\WINNT\System32\PSAPI.DLL
    Heap at VM Abort:
    Heap
    def new generation total 576K, used 408K [0x10010000, 0x100b0000, 0x104f0000)
    eden space 512K, 79% used [0x10010000, 0x10076340, 0x10090000)
    from space 64K, 0% used [0x10090000, 0x10090000, 0x100a0000)
    to space 64K, 0% used [0x100a0000, 0x100a0000, 0x100b0000)
    tenured generation total 2136K, used 1280K [0x104f0000, 0x10706000, 0x14010000)
    the space 2136K, 59% used [0x104f0000, 0x10630030, 0x10630200, 0x10706000)
    compacting perm gen total 6656K, used 6474K [0x14010000, 0x14690000, 0x18010000)
    the space 6656K, 97% used [0x14010000, 0x14662a48, 0x14662c00, 0x14690000)
    Local Time = Tue Nov 25 21:44:39 2003
    Elapsed Time = 26
    # The exception above was detected in native code outside the VM
    # Java VM: Java HotSpot(TM) Client VM (1.4.2_01-b06 mixed mode)

Maybe you are looking for