Java environment on Windows 2000

I've been trying to get Java to run properly on Windows 2000 service pack 4 and I've been having problems. I used to have window ME and it worked fine. The j2sdk1.4.2 and j2sdk1.4.1 files won't install properly.
I get this message from InstallShield Wizard:
Assertion failed: offset < fFileSize, file
../../..src/share/native/sun/awt/font/fontmanager/fontobjects/fontObject.cpp,line 418
abnormal program termination
When I got j2sdk1.4.2_01 to install I couldn't use javac.exe properly. I set the path in my environment values and it appears in the command line if I type path but Textpad 4.6 says that it can't find javac.exe in my windows/system32 folder.
If anyone knows how to resolve this problem I'd greatly appreciate it if you could tell me.
Thanks.

You cannot compile the java servlets with J2SE only.
You need to download and install the "J2EE" in order to compile the Servlets.

Similar Messages

  • How to start a java application as windows 2000 service?

    Hi all,
    I'm trying to start / stop a java application as a windows 2000 service. But nothing appens (I can see the screen that rapidly display the java help prompt and then disappear)
    I've a working directory i.e C:\MyDir and it contains instsrv.exe, srvany.exe and my application jar MyApp.jar
    I'm using instsrv.exe to register a java application as a service ( C:\MyDir\instsrv MyApp C:\MyDir\srvany.exe )
    I've added a key in registry by running regedit
    The key is under the tree HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\MyApp
    the key value is Parameters
    in the key I've added a string value "Application" with the value "C:\j2sdk1.4.2_01\bin\java.exe"
    and a string value "AppParameters" with the value "-classpath C:\MyDir\MyApp.jar main" where main is the name of the main class application.
    This seems to run correctly with Windows NT 4.0
    But doesn't work with Windows 2000.
    Can anyone help me?? pls.
    Thanks.
    Max

    I'm replying to myself .... ;-) ahah
    All we need for this purpose is JavaService, at link
    http://www.alexandriasc.com/software/JavaService/index.html

  • Another BUG in Java VM for Windows 2000!?

    // Having one class, bug:
    public class bug{
         static int i = 0;
         public static void main(String[] args){
              test();
         public static void test(){
              System.out.println("Nr: " + ++i);
              test();
              return;
    Here we have a recursive call in method test.
    On Windows 2000 this program runs about 4-5000 calls to test - end then aborts with no error message!
    It seems to the program ends normaly.
    On Unix the same program runs many thousands calls - end then crash because of stack overflow (gives stack overflow message).
    */

    On Windows 2000 this program runs about 4-5000 calls to
    test - end then aborts with no error message!
    It seems to the program ends normaly.It would seem to end normally for me.
    From a different thread.
    I've just startet with java (from C and C++) and
    stumbled over serious errors right away - so I'm not
    impressed so far...Hmmmmm...perhaps a different perspective? If I had just started with the language I would presume that perhaps my inexperience with the language might cause me to misunderstand obvious results.
    Of course being more experienced I would code your example as follows. And that would tell me what the problem was.
      public class NoBug
        static int i = 0;
        public static void main(String[] args)
          try
            test();
          catch(Throwable e)
             System.out.println("Throwable: " + e);
        public static void test()
          System.out.println("Nr: " + ++i);
          test();
          return;

  • Cannot print on a USB printer with Java PrintService in Windows 2000. Why?

    I want to print a simple ASCII file on a USB printer under Win2K and
    found 2 problems. Here is the 2nd one.
    Even though
    PrintServiceLookup.lookupPrintServices(<DocFlavor>, <AttributeSet>)
    returns nothing when I specify any AttributeSet, I can still print on the default printer, which I get by
    PrintService defServicedefService = PrintServiceLookup.lookupDefaultPrintService();
    but only on a parallel printer (HP Laserjet 4 Plus), either directly attached or over the network. When I try the very same code on a locally USB-attached printer, the printer is obviously reacting, but nothing is printed.
    In case of a Lexmark 730 (an ink printer), the driver even lies, it has printed 100%,
    on a Samsung CLP-510 (a color laser) the ready light flashes twice, that's all.
    The file to be printed has 5 lines and a "0C"X at the end in order to force a page eject at the end.
    I tried it with JDK 1.4.2 and with Java 6, same problem.
    I should mention that I can print that little file out of the editor Textpad without any problem.

    Thanks a lot for the quick hint, but it did not help.
    I used BasicPrint.java and PrintJobWatcher.java of the samples for testing.
    Printing a GIF file works both to a parallel printer and a USB printer.
    Then I changed only the DocFlavor from DocFlavor.INPUT_STREAM.GIF to DocFlavor.INPUT_STREAM.AUTOSENSE, and that one works with my parallel printer, but on the USB printer the Ready light flashes twice, that's all.
    The ASCII file must have a "0C"X at the end to force a page eject on the parallel printer
    Maybe it is a matter of the DocFlavor, but which one?
    DocFlavor("application/octet-stream", "java.io.InputStream") works like DocFlavor.INPUT_STREAM.AUTOSENSE.
    DocFlavor.INPUT_STREAM.TEXT_PLAIN_HOST and DocFlavor.INPUT_STREAM.TEXT_HTML_US_ASCII cause sun.print.PrintJobFlavorException, and with DocFlavor.INPUT_STREAM.TEXT_PLAIN_US_ASCII just nothing happens on either printer, not even an error message.
    I am getting the impression that nobody of the developers ever cared for testing such a simple thing as a plain ASCII file under Windows.
    My printers I am using for the tests are
    1. an old parallel-attached HP Laserjet 4 Plus and
    2. a borrowed USB-attached Samsung CLP-510 color laser

  • Cannot print on a USB printer with Java PrintService in Windows 2000

    I want to print a simple ASCII file on a USB printer under Win2K and
    found 2 problems. Here is the 2nd one.
    Even though
    PrintServiceLookup.lookupPrintServices(<DocFlavor>, <AttributeSet>)
    returns nothing when I specify any AttributeSet, I can still print on the default printer, which I get by
    PrintService defServicedefService = PrintServiceLookup.lookupDefaultPrintService();
    but only on a parallel printer (HP Laserjet 4 Plus), either directly attached or over the network. When I try the very same code on a locally USB-attached printer, the printer is obviously reacting, but nothing is printed.
    In case of a Lexmark 730 (an ink printer), the driver even lies, it has printed 100%,
    on a Samsung CLP-510 (a color laser) the ready light flashes twice, that's all.
    The file to be printed has 5 lines and a "0C"X at the end in order to force a page eject at the end.
    I tried it with JDK 1.4.2 and with Java 6, same problem.
    I should mention that I can print that little file out of the editor Textpad without any problem.
    Edited by: eSchobbert on Jan 24, 2008 11:34 AM
    By mistake I entered the same message another time after modifying the Subject instead of replacing the message. Sorry for that. If I knew how to delete it, I would. So please just ignore this one

    Thanks a lot for the quick hint, but it did not help.
    I used BasicPrint.java and PrintJobWatcher.java of the samples for testing.
    Printing a GIF file works both to a parallel printer and a USB printer.
    Then I changed only the DocFlavor from DocFlavor.INPUT_STREAM.GIF to DocFlavor.INPUT_STREAM.AUTOSENSE, and that one works with my parallel printer, but on the USB printer the Ready light flashes twice, that's all.
    The ASCII file must have a "0C"X at the end to force a page eject on the parallel printer
    Maybe it is a matter of the DocFlavor, but which one?
    DocFlavor("application/octet-stream", "java.io.InputStream") works like DocFlavor.INPUT_STREAM.AUTOSENSE.
    DocFlavor.INPUT_STREAM.TEXT_PLAIN_HOST and DocFlavor.INPUT_STREAM.TEXT_HTML_US_ASCII cause sun.print.PrintJobFlavorException, and with DocFlavor.INPUT_STREAM.TEXT_PLAIN_US_ASCII just nothing happens on either printer, not even an error message.
    I am getting the impression that nobody of the developers ever cared for testing such a simple thing as a plain ASCII file under Windows.
    My printers I am using for the tests are
    1. an old parallel-attached HP Laserjet 4 Plus and
    2. a borrowed USB-attached Samsung CLP-510 color laser

  • Java Card simulator & Windows 2000

    Hi all,
    I chose to use the sun's card simulator (java card Development Kit Version 2.2_01) under windows 2K but from the readme, only WinNT 4.0 platforms are supported. Is there anybody that tried it under Win2K successfully?
    thanks in advance,
    KAnis

    works fine on w2k

  • Installation of Oracle11i on Windows 2000 Professional,Pentium 4

    Hi
    My system is Pentium4,128MB RAM with Windows 2000 professional OS.i am stuck at the first cd i.e i could not run RapidWiz.cmd.it is coming to the command prompt just leaving
    "start .bin\launch.exe .RapidWiz.cl" on the screen with in no time.
    does any one have work around for this problem.
    Please help me in this regard.
    please do mail me to [email protected]
    Thanks in advance.
    Sreeni.

    Hi,
    Sorry, this is an old entry aka a bug in the docu. Windows 2000 is not supported possible anymore by CE, (its not tested anymore). Most likely Windows XP without passowrd account also does not work anymore.
    Best Regads, Oliver
    Composition Environment, CE1, Windows 2000 Windows XP.

  • Using Runtime.getRuntime().exec(DOS Program) with Windows 2000.

    I am trying to spawn a DOS Program from within Java.
    On Win95/98/ME, I use
    Process     p = Runtime.getRuntime().exec("START /w command.com con /c myDOSProgram.exe");
    This works on these platforms. On Win 2000, I use
    Process     p = Runtime.getRuntime().exec("START /w cmd.exe con /c myDOSProgram.exe");
    It does not work at all.
    I have tried all combinations of using START, cmd.exe, con /c, etc.
    I can spawn a Windows App using
    Process     p = Runtime.getRuntime().exec("windows.exe");
    And it works fine.
    What does it take to spawn a DOS program from Java on the Windows 2000 op sys?

    Hi. I recently wrote a java GUI that calls a DOS program with mixed success. Here's the code I used to make the call:String osName = System.getProperty("os.name" );
    String[] cmd = new String[4];
    if( osName.equals( "Windows 2000" ) || osName.equals( "Windows NT" ) )
         cmd[0] = "cmd.exe";
         cmd[1] = "/C" ;
         cmd[2] = "VBDoc.exe";
         cmd[3] = fileName;
    else if( osName.equals( "Windows 95" ) || osName.equals( "Windows 98" ) )
         cmd[0] = "command.com" ;
         cmd[1] = "/C" ;
         cmd[2] = "VBDoc.exe";
         cmd[3] = fileName;
    else
         System.out.println(osName);
    Process proc = runtime.exec(cmd);Check out this article, it gives a good explanation of how to use the exec() call:
    http://www.javaworld.com/javaworld/jw-12-2000/jw-1229-traps.html
    Hope this helps!

  • Installing Eclipse on Windows 2000

    Hey, I'm trying to get started with Java development on Windows 2000 Professional. I've got Eclipse installed but I'm not sure if it's working right. I tried to build the latest release of JUnit as it says in the Eclipse help file, but I get 19 warnings.
    Is this normal? Or is it an indication that JUnit did not compile correctly (and therefore that there may be something wrong with my Eclipse installation?)
    Thanks in advance.

    Try asking the people from JUnit:
    http://tech.groups.yahoo.com/group/junit/

  • Nv4.dll Problem with Jdeveloper 3.1/Windows 2000

    Everytime I try to run the Order Entry Demo
    and click the main.jsp page, my machine
    explodes into the old Blue Screen of Death with an nv4.dll error....
    Any Ideas......
    The environment is Windows 2000 AS/Oracle Jdeveloper 3.1, Oracle NT 8.1.6.
    512MB Memory, 60GB Hard-Drive, Coppermine 600EB....

    Its the Video Driver...I will see if there is an update....Its a 16MB video card from NVIDIA....

  • How to locate IP address using Windows 2000!

    My environment is:
    * Windows 2000
    * Standard Oracle 9i Version 9.0.1
    * AOL DSL high-speed internet service
    To invoke iSQL*Plus (on my machine) via a browser on another machine, I need to give the other user either an IP address or an HTTP address. I have been using DNS2GO (a DNS client) to map my HTTP address into an IP address. I would like to eliminate this process and just give the other user my IP address as DNS2GO has not been reliable for me.
    Usings Windows itself, is there a way that I can find out my AOL IP address? I would like to eliminate the use of a third-party software. When I ping my host name, the IP address I see is not the one I want. It will not allow me to connect to the HTTP server on my PC. It is also not the IP address assigned to me by AOL which is done dynamically. How can I use Windows to identify my AOL IP address? Since DNS2GO was able to identify the IP address, I feel I should be able to accomplish the same using Windows.
    Any help would be appreciated1!

    *** I have found the answer to my question so please disregard it! ***

  • Upgrade + migration from nw04 on windows 2000 to nw04s on windows 2008

    Dear all,
    I need to upgrade and migrate my nw04 java system from windows 2000 to nw04s on windows 2008.
    From the PAM I can see that NW04 is not supported on windows 2008 and that nw04s (7.0) is not supported on windows 2000.
    So, which is the correct upgrade path? Do I need an intermediate win 2003 server which is supported from both the releases?
    Thanks and regards in advance
    Federico

    Hello my friend
    This will be a very interesting project for sure. As you know, kernel 640 is not supported on win2008 and 700 is not supported on win2000, so here there must be a win2003 as a transition platform for this upgrade+ migration, not to mention migration from 32bit to x64 is also involved. You didn't mention the DB versions in source and target systems, as well as the SAP product you're trying to go with. Here's a brief checklist right now for what I can think of, once you're back with more details then let's make it intact:
    I assume your source OS/DB is win2000SQL2000 32bit, target one is win2008SQL2008 x64.
    1. Install a win2003 x64 server and SQL2000 32bit;
    2. Install a new SAP instance same as your source system release in 32bit compatible mode;
    note: if the system being migrated is BW, then be aware of that you might want to bring new features in SQL2008 of row compression and table partitions.
    3. Detach the source DB from old SQL2000, and attach it to new SQL2000; some post configuration for DB copy will be required (STM tool). Now you've finish a migration from win2000 to win2003 32bit;
    4. Start upgrading NW04 to 7.0, 640 to 700, find details in upgrade guide; Now you have your 700 instance on win2003 x64+SQL2000 32bit;
    note: since release 701(700 EHP1) is available now, which you might want to upgrade instead of 700.
    5. Change the collation 850BIN2 for SQL2000 32bit, detach DB;
    6. Since migration from 32bit to x64 cannot be done smoothly, now you have to uninstall everything and reinstall win2003 and SQL2008 x64, followed by a new 700 or 701 instance;
    7. Attach the source DB, post configuration for DB copy will be required (STM tool); Now you have your 700 or 701 instance on win2003 x64+SQL2008 x64;
    8. Detach the SQL2008 DB;
    9. Now go to your target win2008 OS, install SQL 2008 x64 and new 700 or 701 instance;
    note: there might be some restrictions for NW 7.0 on win2008, go with the latest release (SR3 or newer).
    10. Attach DB to this final OS/DB version: win2008 x64+SQL2008 x64, post configuration for DB copy will be required (STM tool).
    Helpful?
    Regards,
    Effan

  • Java 5 Hotspot VM crash on Windows 2000 Server, 2000 Pro and XP pro

    Hello,
    We have had the following recurring error on different machines with Java 5, running one of our mission critical systems.
    It seems to be a problem connected with AWT and "SafepointBlob" whatever that is.
    Has anybody seen this kind of thing before? Does anybody know what the solution is?
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_FLT_STACK_CHECK (0xc0000092) at pc=0x00a70b98, pid=3232, tid=1636
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_05-b05 mixed mode)
    # Problematic frame:
    # v ~SafepointBlob
    --------------- T H R E A D ---------------
    Current thread (0x38f73788): JavaThread "AWT-Windows" daemon [_thread_in_Java, id=1636]
    siginfo: ExceptionCode=0xc0000092, ExceptionInformation=0x00000000 0x3921f8d8
    Registers:
    EAX=0x00000000, EBX=0x00000000, ECX=0x066f7898, EDX=0x009c1e34
    ESP=0x3921f8d8, EBP=0x3921f9b0, ESI=0x00000001, EDI=0x00000000
    EIP=0x00a70b98, EFLAGS=0x00010206
    Top of Stack: (sp=0x3921f8d8)
    0x3921f8d8: 00000000 00000024 0006f284 00000000
    0x3921f8e8: 00000024 0006f284 0006f1bc 77fcae15
    0x3921f8f8: 00230778 00000000 38f73788 38f65540
    0x3921f908: 0006f284 32f77c08 00000000 00230178
    0x3921f918: ffff1372 ffff0000 ffffffff 00000000
    0x3921f928: 00000000 00000000 ffff0000 ff98e0a0
    0x3921f938: ff98e0a0 0000ffff 00000000 ffff0000
    0x3921f948: 00df009f 00fe0097 009fffff 009700df
    Instructions: (pc=0x00a70b98)
    0x00a70b88: 83 ec 6c dd 34 24 9b d9 24 24 83 ec 40 dd 1c 24
    0x00a70b98: dd 5c 24 08 dd 5c 24 10 dd 5c 24 18 dd 5c 24 20
    Stack: [0x391e0000,0x39220000), sp=0x3921f8d8, free space=254k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    v ~SafepointBlob
    J sun.awt.AWTAutoShutdown.setToolkitBusy(Z)V
    J sun.awt.AWTAutoShutdown.notifyToolkitThreadFree()V
    v ~StubRoutines::call_stub
    V [jvm.dll+0x8295c]
    V [jvm.dll+0xd752e]
    V [jvm.dll+0x8282d]
    V [jvm.dll+0x89917]
    C [awt.dll+0xbd875]
    j sun.awt.windows.WToolkit.eventLoop()V+0
    j sun.awt.windows.WToolkit.run()V+69
    j java.lang.Thread.run()V+11
    v ~StubRoutines::call_stub
    V [jvm.dll+0x8295c]
    V [jvm.dll+0xd752e]
    V [jvm.dll+0x8282d]
    V [jvm.dll+0x8258a]
    V [jvm.dll+0x9d476]
    V [jvm.dll+0x1042ae]
    V [jvm.dll+0x10427c]
    C [MSVCRT.dll+0x85bc]
    C [KERNEL32.dll+0xb388]
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x38fee788 JavaThread "Thread-120" [_thread_blocked, id=2616]
    0x38e48478 JavaThread "Thread-119" [_thread_blocked, id=2620]
    0x38e47668 JavaThread "Thread-118" [_thread_blocked, id=2624]
    0x38e46b28 JavaThread "Thread-117" [_thread_blocked, id=2628]
    0x38e45d98 JavaThread "Thread-116" [_thread_blocked, id=2632]
    0x38c085d8 JavaThread "Thread-115" [_thread_blocked, id=2636]
    0x38c07870 JavaThread "Thread-114" [_thread_blocked, id=2640]
    0x38c06e18 JavaThread "Thread-113" [_thread_blocked, id=2644]
    0x3a02f5a0 JavaThread "Thread-112" [_thread_blocked, id=2648]
    0x3a02f418 JavaThread "Thread-111" [_thread_blocked, id=2652]
    0x38e51d60 JavaThread "Thread-110" [_thread_blocked, id=2656]
    0x38e4fb80 JavaThread "Thread-109" [_thread_blocked, id=2660]
    0x38e4efb8 JavaThread "Thread-108" [_thread_blocked, id=2664]
    0x38e4e150 JavaThread "Thread-107" [_thread_blocked, id=2668]
    0x38e4d588 JavaThread "Thread-106" [_thread_blocked, id=2672]
    0x38e4c720 JavaThread "Thread-105" [_thread_blocked, id=2676]
    0x38e4bb58 JavaThread "Thread-104" [_thread_blocked, id=2680]
    0x38e450f8 JavaThread "Thread-103" [_thread_blocked, id=2684]
    0x38e44d58 JavaThread "Thread-102" [_thread_blocked, id=2688]
    0x38e43410 JavaThread "Thread-101" [_thread_blocked, id=2692]
    0x3a01f418 JavaThread "Thread-100" [_thread_blocked, id=2696]
    0x38e48790 JavaThread "Thread-99" [_thread_blocked, id=2700]
    0x38e407f8 JavaThread "Thread-98" [_thread_blocked, id=2708]
    0x38e3fc30 JavaThread "Thread-97" [_thread_blocked, id=2712]
    0x38e3edc8 JavaThread "Thread-96" [_thread_blocked, id=2716]
    0x38e3e200 JavaThread "Thread-95" [_thread_blocked, id=2720]
    0x38e3d398 JavaThread "Thread-94" [_thread_blocked, id=2728]
    0x38e3c7d0 JavaThread "Thread-93" [_thread_blocked, id=2732]
    0x38e3b968 JavaThread "Thread-92" [_thread_blocked, id=2736]
    0x38e3ada0 JavaThread "Thread-91" [_thread_blocked, id=2740]
    0x38e39ff8 JavaThread "Thread-90" [_thread_blocked, id=2744]
    0x38e36b90 JavaThread "Thread-89" [_thread_blocked, id=2748]
    0x38e35d70 JavaThread "Thread-88" [_thread_blocked, id=2752]
    0x38e2e768 JavaThread "Thread-87" [_thread_blocked, id=2756]
    0x38e2dba0 JavaThread "Thread-86" [_thread_blocked, id=2760]
    0x38e2cff0 JavaThread "Thread-85" [_thread_blocked, id=2764]
    0x38c09018 JavaThread "Thread-84" [_thread_blocked, id=1920]
    0x38e2c188 JavaThread "Thread-83" [_thread_blocked, id=2992]
    0x38e31870 JavaThread "Thread-82" [_thread_blocked, id=2724]
    0x38e30aa8 JavaThread "Thread-81" [_thread_blocked, id=1776]
    0x38e33c08 JavaThread "Thread-80" [_thread_blocked, id=1728]
    0x38e32db8 JavaThread "Thread-79" [_thread_blocked, id=1772]
    0x38e322e0 JavaThread "Thread-78" [_thread_blocked, id=1764]
    0x38e34af0 JavaThread "Thread-77" [_thread_blocked, id=1760]
    0x39092a20 JavaThread "Thread-76" [_thread_blocked, id=3180]
    0x38d4bc90 JavaThread "Thread-75" [_thread_blocked, id=1836]
    0x38e0e8d8 JavaThread "Thread-74" [_thread_blocked, id=1820]
    0x38e2b4e0 JavaThread "Thread-73" [_thread_blocked, id=1756]
    0x3a07e410 JavaThread "Thread-72" [_thread_blocked, id=1144]
    0x39fe8d68 JavaThread "Thread-71" [_thread_blocked, id=1768]
    0x39fe81a0 JavaThread "Thread-70" [_thread_blocked, id=592]
    0x39fe7410 JavaThread "Thread-69" [_thread_blocked, id=880]
    0x39fd6708 JavaThread "Thread-68" [_thread_blocked, id=328]
    0x39fd62a8 JavaThread "Thread-67" [_thread_blocked, id=1128]
    0x38d811a0 JavaThread "Thread-66" [_thread_blocked, id=676]
    0x38d86418 JavaThread "Thread-65" [_thread_blocked, id=1928]
    0x3a025ce8 JavaThread "Implied and Derived Price Calculator (Gas Heating Oil Settlement)" [_thread_blocked, id=316]
    0x38dc9de8 JavaThread "Implied and Derived Price Calculator (Gas Heating Oil)" [_thread_blocked, id=428]
    0x38de8dd0 JavaThread "Implied and Derived Price Calculator (Brent Crude Settlement)" [_thread_blocked, id=1116]
    0x3a3392a0 JavaThread "Implied and Derived Price Calculator (Brent Crude)" [_thread_blocked, id=3228]
    0x3a07f7e8 JavaThread "Implied and Derived Price Calculator (White Sugar)" [_thread_blocked, id=1808]
    0x39fa8688 JavaThread "Implied and Derived Price Calculator (Robusta Coffee)" [_thread_blocked, id=1080]
    0x3911c230 JavaThread "Implied and Derived Price Calculator (Cocoa)" [_thread_blocked, id=2264]
    0x38db0e60 JavaThread "Thread-60" [_thread_blocked, id=3136]
    0x38db0b88 JavaThread "Thread-59" [_thread_blocked, id=3140]
    0x38d968c8 JavaThread "Thread-58" [_thread_blocked, id=3144]
    0x38d96648 JavaThread "Thread-57" [_thread_blocked, id=3148]
    0x38d98310 JavaThread "Thread-56" [_thread_blocked, id=3152]
    0x38d97d80 JavaThread "Thread-55" [_thread_blocked, id=3156]
    0x390a4c18 JavaThread "Thread-54" [_thread_blocked, id=3160]
    0x38d93818 JavaThread "Thread-53" [_thread_blocked, id=3164]
    0x3908b410 JavaThread "Thread-52" [_thread_blocked, id=3168]
    0x38d96fe8 JavaThread "Thread-51" [_thread_blocked, id=3172]
    0x38d5c728 JavaThread "Thread-49" [_thread_blocked, id=3184]
    0x38d5c3a0 JavaThread "Thread-48" [_thread_blocked, id=3188]
    0x38d5ac68 JavaThread "Thread-47" [_thread_blocked, id=3192]
    0x38d5a8e0 JavaThread "Thread-46" [_thread_blocked, id=3196]
    0x38d59298 JavaThread "Thread-45" [_thread_blocked, id=3200]
    0x38d58728 JavaThread "Thread-44" [_thread_blocked, id=3204]
    0x38d838c8 JavaThread "Thread-43" [_thread_blocked, id=3208]
    0x38d82da8 JavaThread "Thread-42" [_thread_blocked, id=3212]
    0x38d81fe8 JavaThread "Thread-41" [_thread_blocked, id=3216]
    0x38d81500 JavaThread "Thread-40" [_thread_blocked, id=300]
    0x38d7ef50 JavaThread "Thread-38" [_thread_blocked, id=820]
    0x38d7de50 JavaThread "Thread-37" [_thread_blocked, id=1036]
    0x38da26e8 JavaThread "Thread-36" [_thread_blocked, id=480]
    0x38da24d8 JavaThread "Thread-35" [_thread_blocked, id=1880]
    0x38da1008 JavaThread "Thread-34" [_thread_blocked, id=1924]
    0x38d4ae48 JavaThread "Thread-33" [_thread_blocked, id=2100]
    0x38d80c38 JavaThread "Thread-32" [_thread_blocked, id=1832]
    0x39068a48 JavaThread "Thread-31" [_thread_blocked, id=1800]
    0x39068008 JavaThread "Thread-30" [_thread_blocked, id=1824]
    0x38d5df00 JavaThread "Thread-29" [_thread_blocked, id=1840]
    0x38d477f0 JavaThread "Thread-27" [_thread_blocked, id=1848]
    0x38d47588 JavaThread "Thread-26" [_thread_blocked, id=1828]
    0x38d2f6b0 JavaThread "Thread-25" [_thread_blocked, id=1936]
    0x38d2ec38 JavaThread "Thread-24" [_thread_blocked, id=1868]
    0x38d2df20 JavaThread "Thread-23" [_thread_blocked, id=2060]
    0x38d2dcb8 JavaThread "Thread-22" [_thread_blocked, id=1860]
    0x38d53da0 JavaThread "Thread-21" [_thread_blocked, id=2096]
    0x38d53b38 JavaThread "Thread-20" [_thread_blocked, id=1948]
    0x38d52008 JavaThread "Thread-19" [_thread_blocked, id=1788]
    0x38d87f20 JavaThread "Thread-18" [_thread_blocked, id=1844]
    0x39081270 JavaThread "Thread-15" [_thread_blocked, id=1912]
    0x39081008 JavaThread "Thread-14" [_thread_blocked, id=1888]
    0x38d30c38 JavaThread "Thread-13" [_thread_blocked, id=1904]
    0x3909bd58 JavaThread "Thread-12" [_thread_blocked, id=1900]
    0x38d4c7a8 JavaThread "Thread-11" [_thread_blocked, id=1896]
    0x38d4cb48 JavaThread "Thread-10" [_thread_blocked, id=1916]
    0x38d914f0 JavaThread "Thread-9" [_thread_blocked, id=1892]
    0x38d92148 JavaThread "Thread-8" [_thread_blocked, id=1792]
    0x38d92628 JavaThread "Thread-7" [_thread_blocked, id=1872]
    0x38d92e38 JavaThread "Thread-6" [_thread_blocked, id=1224]
    0x38c481a0 JavaThread "Timer-0" [_thread_blocked, id=1708]
    0x38c23108 JavaThread "HeartBeat Checker" [_thread_blocked, id=1284]
    0x38bad3d0 JavaThread "RiskManager Event Propagator" [_thread_blocked, id=1864]
    0x38bac780 JavaThread "OrderStatus processor" [_thread_blocked, id=932]
    0x38c262d0 JavaThread "Order Event Propagator" [_thread_blocked, id=1716]
    0x38c3cbf0 JavaThread "Data message processor" [_thread_blocked, id=1932]
    0x38c3ca68 JavaThread "RiskManager Event Propagator" [_thread_blocked, id=1724]
    0x38c3ce70 JavaThread "Position Event Propagator" [_thread_blocked, id=1280]
    0x38baab88 JavaThread "Exchange Rate Propagator" [_thread_blocked, id=1448]
    0x38bde210 JavaThread "Java Sound Event Dispatcher" daemon [_thread_blocked, id=1720]
    0x38fb5d48 JavaThread "Market Event Propagator" [_thread_in_vm, id=1664]
    0x38cf1008 JavaThread "Ping Sender" [_thread_blocked, id=1704]
    0x38cf9538 JavaThread "Statistics Updater" [_thread_blocked, id=2768]
    0x39033a70 JavaThread "Message Listener" [_thread_in_native, id=1700]
    0x39033840 JavaThread "Message Sender" [_thread_blocked, id=1672]
    0x38fabe68 JavaThread "Message Event Propagator" [_thread_in_vm, id=2772]
    0x3900a8b0 JavaThread "TimerQueue" daemon [_thread_blocked, id=1696]
    0x38f8a7e0 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=1656]
    0x002366b8 JavaThread "DestroyJavaVM" [_thread_blocked, id=1456]
    0x38fac588 JavaThread "AWT-EventQueue-0" [_thread_blocked, id=1648]
    =>0x38f73788 JavaThread "AWT-Windows" daemon [_thread_in_Java, id=1636]
    0x38e8c490 JavaThread "AWT-Shutdown" [_thread_blocked, id=1640]
    0x009cd4a8 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=1680]
    0x009cbfb0 JavaThread "CompilerThread0" daemon [_thread_blocked, id=1692]
    0x009cb218 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=1712]
    0x009c25d8 JavaThread "Finalizer" daemon [_thread_blocked, id=1688]
    0x009c10e8 JavaThread "Reference Handler" daemon [_thread_blocked, id=1676]
    Other Threads:
    0x009bcfc0 VMThread [id=1684]
    0x009e82b0 WatcherThread [id=1668]
    VM state:synchronizing (normal execution)
    VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event])
    [0x00235c08/0x00000320] Safepoint_lock - owner thread: 0x009bcfc0
    [0x00235c40/0x00000318] Threads_lock - owner thread: 0x009bcfc0
    [0x00235e08/0x000002dc] Heap_lock - owner thread: 0x38fac588
    Heap
    def new generation total 5248K, used 4935K [0x02a90000, 0x03040000, 0x065a0000)
    eden
    [error occurred during error reporting, step 190, id 0xc0000092]
    Dynamic libraries:
    0x00400000 - 0x0040c000      c:\program files\java\jre1.5.0_05\bin\java.exe
    0x77f80000 - 0x77ffc000      C:\WINNT\system32\ntdll.dll
    0x7c2d0000 - 0x7c335000      C:\WINNT\system32\ADVAPI32.dll
    0x7c570000 - 0x7c623000      C:\WINNT\system32\KERNEL32.dll
    0x77d30000 - 0x77da8000      C:\WINNT\system32\RPCRT4.dll
    0x78000000 - 0x78045000      C:\WINNT\system32\MSVCRT.dll
    0x6d640000 - 0x6d7cc000      c:\program files\java\jre1.5.0_05\bin\client\jvm.dll
    0x77e10000 - 0x77e79000      C:\WINNT\system32\USER32.dll
    0x77f40000 - 0x77f7f000      C:\WINNT\system32\GDI32.dll
    0x77570000 - 0x775a0000      C:\WINNT\system32\WINMM.dll
    0x6d280000 - 0x6d288000      c:\program files\java\jre1.5.0_05\bin\hpi.dll
    0x690a0000 - 0x690ab000      C:\WINNT\system32\PSAPI.DLL
    0x6d610000 - 0x6d61c000      c:\program files\java\jre1.5.0_05\bin\verify.dll
    0x6d300000 - 0x6d31d000      c:\program files\java\jre1.5.0_05\bin\java.dll
    0x6d630000 - 0x6d63f000      c:\program files\java\jre1.5.0_05\bin\zip.dll
    0x6d000000 - 0x6d167000      C:\Program Files\Java\jre1.5.0_05\bin\awt.dll
    0x77800000 - 0x7781e000      C:\WINNT\system32\WINSPOOL.DRV
    0x76620000 - 0x76631000      C:\WINNT\system32\MPR.DLL
    0x75e60000 - 0x75e7a000      C:\WINNT\system32\IMM32.dll
    0x7ce20000 - 0x7cf21000      C:\WINNT\system32\ole32.dll
    0x39220000 - 0x3922e000      C:\Program Files\JS Pager\CBT.dll
    0x779b0000 - 0x77a4b000      C:\WINNT\system32\oleaut32.dll
    0x6e420000 - 0x6e426000      C:\WINNT\system32\INDICDLL.dll
    0x6d240000 - 0x6d27d000      C:\Program Files\Java\jre1.5.0_05\bin\fontmanager.dll
    0x7cf30000 - 0x7d186000      C:\WINNT\system32\shell32.dll
    0x71710000 - 0x71794000      C:\WINNT\system32\COMCTL32.dll
    0x70a70000 - 0x70ad6000      C:\WINNT\system32\SHLWAPI.dll
    0x6d4c0000 - 0x6d4d3000      C:\Program Files\Java\jre1.5.0_05\bin\net.dll
    0x75030000 - 0x75044000      C:\WINNT\system32\WS2_32.dll
    0x75020000 - 0x75028000      C:\WINNT\system32\WS2HELP.DLL
    0x6d4e0000 - 0x6d4e9000      C:\Program Files\Java\jre1.5.0_05\bin\nio.dll
    0x39910000 - 0x39915000      C:\PCD32\pcihooks.dll
    0x782c0000 - 0x782cc000      C:\WINNT\System32\rnr20.dll
    0x77980000 - 0x779a4000      C:\WINNT\system32\DNSAPI.DLL
    0x75050000 - 0x75058000      C:\WINNT\system32\WSOCK32.dll
    0x77340000 - 0x77353000      C:\WINNT\system32\iphlpapi.dll
    0x77520000 - 0x77525000      C:\WINNT\system32\ICMP.DLL
    0x77320000 - 0x77337000      C:\WINNT\system32\MPRAPI.DLL
    0x75150000 - 0x75160000      C:\WINNT\system32\SAMLIB.DLL
    0x7cdc0000 - 0x7ce13000      C:\WINNT\system32\NETAPI32.DLL
    0x751c0000 - 0x751c6000      C:\WINNT\system32\NETRAP.dll
    0x77bf0000 - 0x77c01000      C:\WINNT\system32\NTDSAPI.dll
    0x77950000 - 0x7797b000      C:\WINNT\system32\WLDAP32.DLL
    0x7c340000 - 0x7c34f000      C:\WINNT\system32\SECUR32.DLL
    0x773b0000 - 0x773df000      C:\WINNT\system32\ACTIVEDS.DLL
    0x77380000 - 0x773a3000      C:\WINNT\system32\ADSLDPC.DLL
    0x77830000 - 0x7783e000      C:\WINNT\system32\RTUTILS.DLL
    0x77880000 - 0x7790e000      C:\WINNT\system32\SETUPAPI.DLL
    0x7c0f0000 - 0x7c154000      C:\WINNT\system32\USERENV.DLL
    0x774e0000 - 0x77514000      C:\WINNT\system32\RASAPI32.DLL
    0x774c0000 - 0x774d1000      C:\WINNT\system32\rasman.dll
    0x77530000 - 0x77552000      C:\WINNT\system32\TAPI32.dll
    0x77360000 - 0x77379000      C:\WINNT\system32\DHCPCSVC.DLL
    0x777e0000 - 0x777e8000      C:\WINNT\System32\winrnr.dll
    0x777f0000 - 0x777f5000      C:\WINNT\system32\rasadhlp.dll
    0x74fd0000 - 0x74fee000      C:\WINNT\system32\msafd.dll
    0x75010000 - 0x75017000      C:\WINNT\System32\wshtcpip.dll
    0x6d470000 - 0x6d495000      C:\Program Files\Java\jre1.5.0_05\bin\jsound.dll
    0x6d4a0000 - 0x6d4a7000      C:\Program Files\Java\jre1.5.0_05\bin\jsoundds.dll
    0x51080000 - 0x510d8000      C:\WINNT\system32\DSOUND.dll
    0x77820000 - 0x77827000      C:\WINNT\system32\VERSION.dll
    0x759b0000 - 0x759b6000      C:\WINNT\system32\LZ32.DLL
    0x7c950000 - 0x7c9e0000      C:\WINNT\system32\CLBCATQ.DLL
    0x77840000 - 0x7787e000      C:\WINNT\system32\cscui.dll
    0x770c0000 - 0x770e3000      C:\WINNT\system32\CSCDLL.DLL
    0x76df0000 - 0x76e01000      C:\WINNT\system32\mydocs.dll
    0x3a840000 - 0x3a98a000      C:\WINNT\system32\SHDOCVW.DLL
    0x75160000 - 0x7516c000      C:\WINNT\System32\ntlanman.dll
    0x75210000 - 0x75225000      C:\WINNT\System32\NETUI0.dll
    0x751d0000 - 0x75208000      C:\WINNT\System32\NETUI1.dll
    VM Arguments:
    jvm_args: -Xms64m -Xmx768m -Djavax.swing.adjustPopupLocationToFit=false -Dsun.java2d.noddraw=true
    java_command: star.client.gui.Startup
    Environment Variables:
    PATH=C:\WINNT\system32;C:\WINNT;C:\WINNT\System32\Wbem
    USERNAME=Administrator
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 15 Model 2 Stepping 7, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows 2000 Build 2195 Service Pack 4
    CPU:total 2 family 15, cmov, cx8, fxsr, mmx, sse, sse2, ht
    Memory: 4k page, physical 1047984k(567712k free), swap 2034812k(1607528k free)
    vm_info: Java HotSpot(TM) Client VM (1.5.0_05-b05) for windows-x86, built on Aug 26 2005 15:36:02 by "java_re" with MS VC++ 6.0

    Hello, I have a similar error message when i`m tryinng to access to my ODBC database with pentaho, a JDBC aplication. This is my error:
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_FLT_STACK_CHECK (0xc0000092) at pc=0x00b30c58, pid=4540, tid=3068
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_08-b03 mixed mode)
    # Problematic frame:
    # v ~SafepointBlob
    --------------- T H R E A D ---------------
    Current thread (0x173b6578): JavaThread "Thread-14" daemon [_thread_in_Java, id=3068]
    siginfo: ExceptionCode=0xc0000092, ExceptionInformation=0x00000000 0x17dff8a8
    Registers:
    EAX=0x173b6578, EBX=0x173b6578, ECX=0x17dff930, EDX=0x7c91eb94
    ESP=0x17dff8a8, EBP=0x17dff980, ESI=0x00000003, EDI=0x173b6578
    EIP=0x00b30c58, EFLAGS=0x00010202
    Top of Stack: (sp=0x17dff8a8)
    0x17dff8a8: 1745ae60 0000007a 06c7e658 06af29b0
    0x17dff8b8: 00a41fd8 6d7fa3b1 00a41fd8 16d6bc7c
    0x17dff8c8: 00000000 00000001 00000001 17caefc0
    0x17dff8d8: 6d80683c 1745ae50 00000000 00000001
    0x17dff8e8: ffff027a ffff0000 ffffffff 00b2fc11
    0x17dff8f8: 05c0001b 17dff858 ffff0023 173b6180
    0x17dff908: 0000001d 00090009 00090003 00090004
    0x17dff918: 00070009 ffffffff 000f0000 778c0000
    Instructions: (pc=0x00b30c58)
    0x00b30c48: 83 ec 6c dd 34 24 9b d9 24 24 83 ec 40 dd 1c 24
    0x00b30c58: dd 5c 24 08 dd 5c 24 10 dd 5c 24 18 dd 5c 24 20
    Stack: [0x17dc0000,0x17e00000), sp=0x17dff8a8, free space=254k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    v ~SafepointBlob
    J java.awt.EventQueue.postEvent(Ljava/awt/AWTEvent;)V
    j java.awt.EventQueue.invokeAndWait(Ljava/lang/Runnable;)V+46
    j org.pentaho.reportdesigner.crm.report.datasetplugin.multidataset.MultiDataSetReportElementConfigurator$12$1.run()V+200
    v ~StubRoutines::call_stub
    V [jvm.dll+0x86e84]
    V [jvm.dll+0xddead]
    V [jvm.dll+0x86d55]
    V [jvm.dll+0x86ab2]
    V [jvm.dll+0xa16b2]
    V [jvm.dll+0x10f4ac]
    V [jvm.dll+0x10f47a]
    C [MSVCRT.dll+0x2a3b0]
    C [kernel32.dll+0xb683]
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    =>0x173b6578 JavaThread "Thread-14" daemon [_thread_in_Java, id=3068]
    0x177436a0 JavaThread "Thread-7" daemon [_thread_blocked, id=5364]
    0x176e3780 JavaThread "Thread-4" daemon [_thread_blocked, id=3992]
    0x17736d58 JavaThread "Thread-3" daemon [_thread_blocked, id=1640]
    0x176c1dc8 JavaThread "TimerQueue" daemon [_thread_blocked, id=4292]
    0x17502a98 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=5028]
    0x00036030 JavaThread "DestroyJavaVM" [_thread_blocked, id=5944]
    0x17502910 JavaThread "AWT-EventQueue-1" [_thread_in_vm, id=1304]
    0x174f1e50 JavaThread "AWT-Windows" daemon [_thread_in_native, id=668]
    0x00ab81f0 JavaThread "AWT-Shutdown" [_thread_blocked, id=4712]
    0x00a941f8 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=3988]
    0x00a92c88 JavaThread "CompilerThread0" daemon [_thread_blocked, id=5784]
    0x00a91fd8 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=204]
    0x00a890e0 JavaThread "Finalizer" daemon [_thread_blocked, id=4912]
    0x00a87c78 JavaThread "Reference Handler" daemon [_thread_blocked, id=5416]
    Other Threads:
    0x00a851b0 VMThread [id=4832]
    0x00a953d8 WatcherThread [id=5892]
    VM state:synchronizing (normal execution)
    VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event])
    [0x00035688/0x00000718] Safepoint_lock - owner thread: 0x00a851b0
    [0x000356b8/0x00000710] Threads_lock - owner thread: 0x00a851b0
    Heap
    def new generation total 1728K, used 825K [0x02ad0000, 0x02ca0000, 0x02fb0000)
    eden
    [error occurred during error reporting, step 190, id 0xc0000092]
    Dynamic libraries:
    0x00400000 - 0x0040d000      C:\pentaho\java\bin\java.exe
    0x7c910000 - 0x7c9c6000      C:\WINDOWS\system32\ntdll.dll
    0x7c800000 - 0x7c902000      C:\WINDOWS\system32\kernel32.dll
    0x77da0000 - 0x77e4c000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77e50000 - 0x77ee2000      C:\WINDOWS\system32\RPCRT4.dll
    0x77fc0000 - 0x77fd1000      C:\WINDOWS\system32\Secur32.dll
    0x77be0000 - 0x77c38000      C:\WINDOWS\system32\MSVCRT.dll
    0x6d730000 - 0x6d8cb000      C:\pentaho\java\bin\client\jvm.dll
    0x7e390000 - 0x7e420000      C:\WINDOWS\system32\USER32.dll
    0x77ef0000 - 0x77f37000      C:\WINDOWS\system32\GDI32.dll
    0x76b00000 - 0x76b2e000      C:\WINDOWS\system32\WINMM.dll
    0x6d2f0000 - 0x6d2f8000      C:\pentaho\java\bin\hpi.dll
    0x76bb0000 - 0x76bbb000      C:\WINDOWS\system32\PSAPI.DLL
    0x6d700000 - 0x6d70c000      C:\pentaho\java\bin\verify.dll
    0x6d370000 - 0x6d38d000      C:\pentaho\java\bin\java.dll
    0x6d720000 - 0x6d72f000      C:\pentaho\java\bin\zip.dll
    0x6d070000 - 0x6d1d9000      C:\pentaho\java\bin\awt.dll
    0x72f80000 - 0x72fa6000      C:\WINDOWS\system32\WINSPOOL.DRV
    0x76340000 - 0x7635d000      C:\WINDOWS\system32\IMM32.dll
    0x774b0000 - 0x775ed000      C:\WINDOWS\system32\ole32.dll
    0x5b150000 - 0x5b188000      C:\WINDOWS\system32\uxtheme.dll
    0x736e0000 - 0x73729000      C:\WINDOWS\system32\ddraw.dll
    0x73b40000 - 0x73b46000      C:\WINDOWS\system32\DCIMAN32.dll
    0x746b0000 - 0x746fb000      C:\WINDOWS\system32\MSCTF.dll
    0x6d2b0000 - 0x6d2ef000      C:\pentaho\java\bin\fontmanager.dll
    0x6d530000 - 0x6d543000      C:\pentaho\java\bin\net.dll
    0x71a30000 - 0x71a47000      C:\WINDOWS\system32\WS2_32.dll
    0x71a20000 - 0x71a28000      C:\WINDOWS\system32\WS2HELP.dll
    0x6d550000 - 0x6d559000      C:\pentaho\java\bin\nio.dll
    0x7e6a0000 - 0x7eec0000      C:\WINDOWS\system32\shell32.dll
    0x77f40000 - 0x77fb6000      C:\WINDOWS\system32\SHLWAPI.dll
    0x773a0000 - 0x774a3000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2982_x-ww_ac3f9c03\comctl32.dll
    0x58c30000 - 0x58cca000      C:\WINDOWS\system32\comctl32.dll
    0x597f0000 - 0x59844000      C:\WINDOWS\system32\netapi32.dll
    0x71aa0000 - 0x71ab2000      C:\WINDOWS\system32\MPR.dll
    0x75f10000 - 0x75f17000      C:\WINDOWS\System32\drprov.dll
    0x71bb0000 - 0x71bbe000      C:\WINDOWS\System32\ntlanman.dll
    0x71c70000 - 0x71c87000      C:\WINDOWS\System32\NETUI0.dll
    0x71c30000 - 0x71c70000      C:\WINDOWS\System32\NETUI1.dll
    0x71c20000 - 0x71c27000      C:\WINDOWS\System32\NETRAP.dll
    0x71b90000 - 0x71ba3000      C:\WINDOWS\System32\SAMLIB.dll
    0x75f20000 - 0x75f29000      C:\WINDOWS\System32\davclnt.dll
    0x778f0000 - 0x779e7000      C:\WINDOWS\system32\SETUPAPI.dll
    0x77b10000 - 0x77b32000      C:\WINDOWS\system32\appHelp.dll
    0x76f90000 - 0x7700f000      C:\WINDOWS\system32\CLBCATQ.DLL
    0x77010000 - 0x770e0000      C:\WINDOWS\system32\COMRes.dll
    0x770f0000 - 0x7717b000      C:\WINDOWS\system32\OLEAUT32.dll
    0x77bd0000 - 0x77bd8000      C:\WINDOWS\system32\VERSION.dll
    0x76940000 - 0x76948000      C:\WINDOWS\system32\LINKINFO.dll
    0x76950000 - 0x76976000      C:\WINDOWS\system32\ntshrui.dll
    0x76ae0000 - 0x76af1000      C:\WINDOWS\system32\ATL.DLL
    0x76630000 - 0x766e4000      C:\WINDOWS\system32\USERENV.dll
    0x763b0000 - 0x76559000      C:\WINDOWS\system32\NETSHELL.dll
    0x76e40000 - 0x76e4e000      C:\WINDOWS\system32\rtutils.dll
    0x76bc0000 - 0x76bef000      C:\WINDOWS\system32\credui.dll
    0x76d20000 - 0x76d39000      C:\WINDOWS\system32\iphlpapi.dll
    0x18130000 - 0x181b4000      C:\Archivos de programa\TortoiseSVN\bin\tortoisesvn.dll
    0x77180000 - 0x77227000      C:\WINDOWS\system32\WININET.dll
    0x77a50000 - 0x77ae5000      C:\WINDOWS\system32\CRYPT32.dll
    0x77af0000 - 0x77b02000      C:\WINDOWS\system32\MSASN1.dll
    0x6eec0000 - 0x6eee2000      C:\Archivos de programa\TortoiseSVN\bin\libapr_tsvn.dll
    0x719d0000 - 0x71a10000      C:\WINDOWS\system32\MSWSOCK.dll
    0x78130000 - 0x781cb000      C:\WINDOWS\WinSxS\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.762_x-ww_6b128700\MSVCR80.dll
    0x6ee60000 - 0x6ee89000      C:\Archivos de programa\TortoiseSVN\bin\libaprutil_tsvn.dll
    0x6ee50000 - 0x6ee5e000      C:\Archivos de programa\TortoiseSVN\bin\libapriconv_tsvn.dll
    0x181c0000 - 0x181cc000      C:\Archivos de programa\TortoiseSVN\bin\intl3_svn.dll
    0x7c420000 - 0x7c4a7000      C:\WINDOWS\WinSxS\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.762_x-ww_6b128700\MSVCP80.dll
    0x76740000 - 0x76749000      C:\WINDOWS\system32\SHFOLDER.dll
    0x6ee40000 - 0x6ee46000      C:\Archivos de programa\TortoiseSVN\iconv\_tbl_simple.so
    0x6e060000 - 0x6e067000      C:\Archivos de programa\TortoiseSVN\iconv\windows-1252.so
    0x6ed50000 - 0x6ed56000      C:\Archivos de programa\TortoiseSVN\iconv\utf-8.so
    0x779f0000 - 0x77a45000      C:\WINDOWS\System32\cscui.dll
    0x765b0000 - 0x765cd000      C:\WINDOWS\System32\CSCDLL.dll
    0x6d3e0000 - 0x6d3ed000      C:\pentaho\java\bin\JdbcOdbc.dll
    0x745e0000 - 0x7461d000      C:\WINDOWS\system32\ODBC32.dll
    0x76360000 - 0x763aa000      C:\WINDOWS\system32\comdlg32.dll
    0x20000000 - 0x20018000      C:\WINDOWS\system32\odbcint.dll
    0x612d0000 - 0x612eb000      C:\WINDOWS\system32\odbccp32.dll
    0x1a520000 - 0x1a7f6000      C:\WINDOWS\system32\xpsp2res.dll
    0x7d1f0000 - 0x7d4ae000      C:\WINDOWS\system32\msi.dll
    0x76980000 - 0x76a31000      C:\WINDOWS\system32\SXS.DLL
    VM Arguments:
    jvm_args: -XX:MaxPermSize=256m -Dswt.swing.laf=com.sun.java.swing.plaf.windows.WindowsLookAndFeel
    java_command: launcher/launcher-1.0.0.jar org.pentaho.reportdesigner.crm.report.ReportDialog
    Launcher Type: SUN_STANDARD
    Environment Variables:
    PATH=C:\pentaho\java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Archivos de programa\ATI Technologies\ATI Control Panel;C:\ARCHIV~1\ULTRAE~1;C:\Archivos de programa\Archivos comunes\Easysoft\Shared\
    USERNAME=mciudadc
    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 (cores per cpu 1, threads per core 1) family 6 model 13 stepping 8, cmov, cx8, fxsr, mmx, sse, sse2
    Memory: 4k page, physical 2096492k(853856k free), swap 4033316k(2683036k free)
    vm_info: Java HotSpot(TM) Client VM (1.5.0_08-b03) for windows-x86, built on Jul 26 2006 01:10:50 by "java_re" with MS VC++ 6.0
    I don´t know where is the problem. Any help? PLEASE?
    Thanks!!!

  • 10g (10.2.01) setup/java.exe hangs on Windows 2000 SP4.

    Hi all,
    I'm currently having an issue with a 10g install on Windows 2000 (SP4) hosted on a Windows Virtual Machine.
    I remote to this machine using PCAnywhere.
    When I run setup.exe it just hangs on the java.exe process.
    I have run the setup with a -debug option and am not seeing anything out of the ordinary.
    I have also checked the the log and it does not seem to contain any errors.
    I have run through the 10g pre installation requirements and don't believe that is a problem as the
    machine and OS meets all the criteria.
    I have researched a similar setup.exe/java.exe hanging issues and have tried some of those solutions to no avail.
    For instance moving the 10g the install folder to C: drive and confirming there are no spaces in the install path.
    Increasing the JRE memory allocation to 1024 in oraparam.ini
    Log file contents:
    Using paramFile: C:\10g_Client_10201\install\oraparam.ini
    No pre-requisite checks found in oraparam.ini, no system pre-requisite checks will be executed.
    The commandline for unzip:
    C:\10g_Client_10201\install\unzip ../stage/Components/oracle.swd.jre/1.4.2.8.0/1/DataFiles/"*.jar" -d "C:\Temp\OraInstall2008-10-21_04-54-08PM"
    The commandline for unzip:
    C:\10g_Client_10201\install\unzip ..\stage\Components\oracle.swd.oui\10.2.0.1.0\1\DataFiles\/"*.jar" -d "C:\Temp\OraInstall2008-10-21_04-54-08PM"
    The commandline for unzip:
    C:\10g_Client_10201\install\unzip ..\stage\Components\oracle.swd.oui.core\10.2.0.1.0\1\DataFiles\/"*.jar" -d "C:\Temp\OraInstall2008-10-21_04-54-08PM"
    The number of files bootstrapped for the jre is 584.
    The number of files bootstrapped for the oui is 100.
    Total args: 23
    Command line argument array elements ...
    "C:\Temp\OraInstall2008-10-21_04-54-08PM\jre\1.4.2\bin\java.exe"
    -Doracle.installer.library_loc="C:\Temp\OraInstall2008-10-21_04-54-08PM\oui\lib\win32"
    -Doracle.installer.oui_loc="C:\Temp\OraInstall2008-10-21_04-54-08PM\oui"
    -Doracle.installer.bootstrap=TRUE
    -Doracle.installer.startup_location="C:\10g_Client_10201\install"
    -Doracle.installer.jre_loc="C:\Temp\OraInstall2008-10-21_04-54-08PM\jre\1.4.2"
    -Doracle.installer.exec_location="C:\10g_Client_10201\install\oui.exe"
    -Doracle.installer.nlsEnabled="TRUE"
    -Doracle.installer.prereqConfigLoc=""
    -mx1024m
    -cp
    "C:\Temp\OraInstall2008-10-21_04-54-08PM;C:\Temp\OraInstall2008-10-21_04-54-08PM\oui\jlib\OraInstaller.jar;C:\Temp\OraInstall2008-10-21_04-54-08PM\oui\jlib\oneclick.jar;C:\Temp\OraInstall2008-10-21_04-54-08PM\oui\jlib\xmlparserv2.jar;C:\Temp\OraInstall2008-10-21_04-54-08PM\oui\jlib\srvm.jar;C:\Temp\OraInstall2008-10-21_04-54-08PM\oui\jlib\share.jar;C:\Temp\OraInstall2008-10-21_04-54-08PM\oui\jlib\OraInstallerNet.jar;C:\Temp\OraInstall2008-10-21_04-54-08PM\oui\jlib\xml.jar;C:\Temp\OraInstall2008-10-21_04-54-08PM\oui\jlib\orai18n-collation.jar;C:\Temp\OraInstall2008-10-21_04-54-08PM\oui\jlib\orai18n-mapping.jar;C:\Temp\OraInstall2008-10-21_04-54-08PM\oui\jlib\emCfg.jar;C:\Temp\OraInstall2008-10-21_04-54-08PM\oui\jlib\ojmisc.jar;C:\Temp\OraInstall2008-10-21_04-54-08PM\oui\jlib\InstImages.jar;C:\Temp\OraInstall2008-10-21_04-54-08PM\oui\jlib\InstHelp.jar;C:\Temp\OraInstall2008-10-21_04-54-08PM\oui\jlib\InstHelp_de.jar;C:\Temp\OraInstall2008-10-21_04-54-08PM\oui\jlib\InstHelp_es.jar;C:\Temp\OraInstall2008-10-21_04-54-08PM\oui\jlib\InstHelp_fr.jar;C:\Temp\OraInstall2008-10-21_04-54-08PM\oui\jlib\InstHelp_it.jar;C:\Temp\OraInstall2008-10-21_04-54-08PM\oui\jlib\InstHelp_ja.jar;C:\Temp\OraInstall2008-10-21_04-54-08PM\oui\jlib\InstHelp_ko.jar;C:\Temp\OraInstall2008-10-21_04-54-08PM\oui\jlib\InstHelp_pt_BR.jar;C:\Temp\OraInstall2008-10-21_04-54-08PM\oui\jlib\InstHelp_zh_CN.jar;C:\Temp\OraInstall2008-10-21_04-54-08PM\oui\jlib\InstHelp_zh_TW.jar;C:\Temp\OraInstall2008-10-21_04-54-08PM\oui\jlib\oracle_ice.jar;C:\Temp\OraInstall2008-10-21_04-54-08PM\oui\jlib\help4.jar;C:\Temp\OraInstall2008-10-21_04-54-08PM\oui\jlib\help4-nls.jar;C:\Temp\OraInstall2008-10-21_04-54-08PM\oui\jlib\ewt3.jar;C:\Temp\OraInstall2008-10-21_04-54-08PM\oui\jlib\ewt3-swingaccess.jar;C:\Temp\OraInstall2008-10-21_04-54-08PM\oui\jlib\ewt3-nls.jar;C:\Temp\OraInstall2008-10-21_04-54-08PM\oui\jlib\swingaccess.jar;C:\Temp\OraInstall2008-10-21_04-54-08PM\oui\jlib\classes12.jar;\;C:\Temp\OraInstall2008-10-21_04-54-08PM\oui\jlib\OraPrereq.jar;C:\Temp\OraInstall2008-10-21_04-54-08PM\oui\jlib\jewt4.jar;C:\Temp\OraInstall2008-10-21_04-54-08PM\oui\jlib\jewt4-nls.jar"
    oracle.sysman.oii.oiic.OiicInstaller
    -scratchPath
    "C:\Temp\OraInstall2008-10-21_04-54-08PM"
    -sourceLoc
    "C:\10g_Client_10201\install\../stage/products.xml"
    -sourceType
    network
    -timestamp
    2008-10-21_04-54-08PM
    -debug

    As Daniel stated on his previous post, this is not supported from the official oracle point of view, so if you are implementing this for production environments, even if it worked, you would be on your own. However, this should work. Check if you have any other java environment on the scope of the PATH environment variable. A virtual machine is from the OS configuration point of view the same as a physical machine, if the PATHs are scrambled and if you are accessing different versions of JRE at install time, this won't work, and the first symptom is a frozen java session.
    ~ Madrid
    http://hrivera99.blogspot.com

  • How can I run a java-application on starting of Windows 2000

    How can I run a java-application without any user on starting of Windows 2000?
    For example, if the computer is restarted and nobody enter into it yet, my java-application should run anyway.
    How can I do that?

    Hi, you have to put it in a Windows service.
    To do this you have a program, Srvany.exe that allow to insert a .exe or .bat program in a Windows service.
    For example, i develop a program, TomcatGuardian and i put it in a service because i need to run it in a server without Administrator logged in.
    Regards,
    Ivan.

Maybe you are looking for

  • Unable to login to Web console through xelsysadm.

    Hi All, I am unable to login to the web console through xelsysadm.It doesn't show any error message, but the process bar goes on for some time and then shows the session is expired. I have a delegated admin with 5 users. The users present in this gro

  • Steam + Wine = No OpenGL extensions found

    Hey all! I'm trying to run Team Fortress 2 on wine but got stuck on running Steam. I did: env WINEARCH=win32 WINEPREFIX=~/.wine-steam32 msiexec /i SteamInstall.msi And then in the Steam directory: optirun env WINEARCH=win32 WINEPREFIX=~/.wine-steam32

  • RAC(OPS) 환경 하에서 ARCHIVED LOG FILE을 BACKUP 받는 방법

    제품 : RMAN 작성날짜 : 2004-11-26 RAC(OPS) 환경하에서 양쪽 Node의 archived log file을 RMAN을 사용하여 동시에 BACKUP 받는 방법 ====================================================================================== ORACLE 9i 이전 버전 Oracle 8i까지는 다음과 같은 Script를 통하여 Backup을 받을 수 있었습

  • How  to open  project in netbeans IDE

    am developing one new application in mobile using netbeans 4.1 ide.and j2me..how to open the project folder (which i downloaded from mail attachment) in my netbeans ide.. pls tel me in detail ... mohu

  • Feature Request: "Show Password" option in login s...

    When I am connecting to wi-fi networks, the connection dlg box often gives me the option to show the characters of the wi-fi password, so that I can ensure that I'm putting the right chars in.   Can I request this same option in the login screen for