Win98 se problems/jdk1.2.2

I installed jdk1.2.2 and when i want to compile, i gotta type all the paths like:
cd C:\jdk1.2.2\bin\
javac C:\Java\java.java
and its getting me mad. people say to change the PATH in autoexec.bat, but i cant find it on my computer. i can only find autoexec.001. Please help. Im using Windows 98 se.

I think I installed java on win98 once upon a time and it was hideous.
slow
memory hoggin
win98 could not handle it.
it took 30 secs to compile hello world
and dont even think about J2EE or JBOSS or Tomcat
abort

Similar Messages

  • WIN98 classpath problem

    I have J1.3.1SDK installed onto my WIN98 machine at home. I have the paths and classpath set, but everytime I reboot my machine the classpath gets erased and I have to dadd it in again.
    Does anyone know why this happens. It doesn't happen on the WIN2000 machine I use at work.

    If your getting errors then it's propaply because you're using spaces in the classpath.
    If you have any spaces in your classpath, then you'll have to add quotes around the value, like:
    set CLASSPATH="C:\jdk1.3\lib....;....;."
    Good luck.
    Kurt.

  • Problem JDK1.2/JDBC8.1.6 OCI/Oracle 8.0.6

    I'm running JDK1.2 with JDBC 8.1.6 and Oracle 8.0.6 db server, Solaris 2.6. I can not get the JDBC driver to work with JDK 1.2 ( it works with JDK1.1).
    I have classes12.zip in classpath and libocijdbc8.so in my $LD_LIBRARY_PATH.
    Any idea ? Has any got it to work ?
    Thank you
    Dominik
    Exception in thread "main" java.lang.UnsatisfiedLinkError: no ocijdbc8 in java.library.path
    at java.lang.Throwable.fillInStackTrace(Native Method)
    at java.lang.Throwable.<init>(Throwable.java:94)
    at java.lang.Error.<init>(Error.java:50)
    at java.lang.LinkageError.<init>(LinkageError.java:43)
    at java.lang.UnsatisfiedLinkError.<init>(UnsatisfiedLinkError.java:42)
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1300)
    at java.lang.Runtime.loadLibrary0(Runtime.java:470)
    at java.lang.System.loadLibrary(System.java:778)
    at oracle.jdbc.oci8.OCIDBAccess.logon(OCIDBAccess.java:208)
    at oracle.jdbc.driver.OracleConnection.<init>(OracleConnection.java:198)
    at oracle.jdbc.driver.OracleDriver.getConnectionInstance(OracleDriver.java:251)
    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:224)
    at java.sql.DriverManager.getConnection(DriverManager.java:457)
    at java.sql.DriverManager.getConnection(DriverManager.java:137)
    at JdbcTest.main(JdbcTest.java:13)
    null

    Do you have the LDLIBRARY_PATH set correctly? You must have an 8.1.6.x Client installedin orde to use the OCI driver. You ay want to use the THIN driver an avoid the client configuration issues entirely. The OCI driver isn't tremendously faster than the thin driver anyway.

  • Satellite 2060CDS: CD drive not found under Win98 - controller problems?

    Dear all,
    at the moment I'm on holiday at the baltic/Germany. There my TOSHIBA Satellite 2060 CDS had a Windows 98 crash and so I had to install OS new with recovery cd. After that I don't found CD-ROM drive any longer in Windows. Having a look into System and Hardware Manager there seems to be trouble with TOSHIBA primary IDE controller and TOSHIBA secondary IDE controller because there is a "!" infront of them.
    I tried to reinstall OS approx. six times but unfortunately without success.
    Please help me!
    Tobi

    Hi,
    thank you for fast reply.
    Unfortunately I have just Modem-connection (56k) and so I would like to say that it would be to hard to download Windows 98 service packs... :-(
    Well, TOHSIBA Service Support answered me that it may be a hardware problem, so maybe the controller on the mainboard is demaged. I say thank you for this fast reply, but I'm suprised that I can copy data from CD-ROM to HDD in MS-DOS-Modus (starting with Windows start disk and CD-ROM-support).
    So I still have hope that there is a software solution...
    If you have any detailed hints or data for me - please let me know!!!
    Thank you in advance.
    Best regards,
    Tobi

  • Compatability of jdk1.3 with j2me

    Hi,
    Is there any compatability problem(jdk1.3 with j2me)?
    will j2me support the jdk1.3?
    Advanced Thanks
    Audippa

    Can any body help on knowing of the compatability of jdk1.3 with j2me
    how can we know the compatabilty?
    is there any way to know the compatability?
    pls help on this
    Thanks
    Audippa Naidu.M

  • Booting Problem - WD40GB HDD

    Hi
    Not sure which board. Just found N1996 on board. Processor P3 733MHz.
    Previously using Maxtor 40GB(Win98) not problem. Now change WD 40GB (Win98). Sometimes it detect and can boot. But sometimes it can't detect. Hav to reboot few times until it detect the hdd.
    Anyone can help? Thanks

    Western Digital hard drives if by themselves need to be jumperless. So unless you have another device on the primary chain make sure the jumper is removed.
    Good Luck
    Jeremy

  • How to put a string from one Frame to another Frame?

    Dear all,
    How can I put a String from one Frame to another Frame?
    When the application started, the Frame 'WindowX' will be displayed. After you press the 'openButton', a whole new Frame (inputFrame) will be shown. In this Frame )(inputFrame) you can write a String in a TextField. After pressing the okButton, this String will be sent to the first Frame 'WindowX'.
    But does anyone know how to realize the sending part?
    I've tested this code on Win98 SE and JDK1.2.2.
    Hope someone can help me. Thanks in advance.
    import java.awt.*;
    import java.awt.event.*;
    public class WindowX extends Frame implements ActionListener, WindowListener
         private Button openButton;
         private TextField resultField;
         public static void main(String [] args)
              WindowX wx = new WindowX();
              wx.setSize(300,100);
              wx.setVisible(true);
         public WindowX()
              setLayout(new FlowLayout());
              openButton=new Button("open");
              add(openButton);
              openButton.addActionListener(this);
              resultField=new TextField(10);
              add(resultField);
              resultField.addActionListener(this);
              addWindowListener(this);     
         public void actionPerformed(ActionEvent evt)
              if (evt.getSource()==openButton)
                   inputFrame ip=new inputFrame();
                   ip.setSize(200,80);
                   ip.show();
         public void place(String theString) //this doesn't work
              resultField.setText(theString);
         public void windowClosing(WindowEvent event)
              System.exit(0);
         public void windowIconi......
    class inputFrame extends Frame implements ActionListener,WindowListener
         String theString = "";
         Button okButton;
         TextField inputField;
         WindowX myWX=new WindowX();   //??
         public inputFrame()
              setLayout(new FlowLayout());
              inputField=new TextField(10);
              add(inputField);
              inputField.addActionListener(this);
              okButton=new Button("OK");
              add(okButton);
              okButton.addActionListener(this);     
              addWindowListener(this);     
         public static void main(String[] args)
              Frame f = new Frame();
              f.show();
         public void actionPerformed(ActionEvent evt)
              if (evt.getSource()==okButton)
                   theString=inputField.getText();
                   myWX.place(theString);   //??
                   dispose();
        public void windowClosing(WindowEvent e) {
        dispose();
        public void windowIconi......
    }

    Thanks for your reply!
    But I got an other problem:
    I can't refer to the object (wx) made from the main Frame 'WindowX', because it's initialized in 'public static void main(String [] args)'...
    Hope you can help me again... Thanks!
    import java.awt.*;
    import java.awt.event.*;
    public class WindowX extends Frame implements ActionListener, WindowListener
         private Button openButton;
         private TextField resultField;
         public static void main(String [] args)
              WindowX wx = new WindowX();   //!!
              wx.setSize(300,100);
              wx.setVisible(true);
         public WindowX()
              setLayout(new FlowLayout());
              openButton=new Button("open");
              add(openButton);
              openButton.addActionListener(this);
              resultField=new TextField(10);
              add(resultField);
              resultField.addActionListener(this);
              addWindowListener(this);     
         public void actionPerformed(ActionEvent evt)
              if (evt.getSource()==openButton)
                   inputFrame ip=new inputFrame(wx);
                   ip.setSize(200,80);
                   ip.show();
         public void place(String theString)
              resultField.setText(theString);
         public void windowClosing(WindowEvent event)
              System.exit(0);
         public void windowIconi....
    class inputFrame extends Frame implements ActionListener,WindowListener
         String theString = "";
         Button okButton;
         TextField inputField;
         WindowX parent;
         public inputFrame(WindowX parent)
              setLayout(new FlowLayout());
              this.parent=parent;
              inputField=new TextField(10);
              add(inputField);
              inputField.addActionListener(this);
              okButton=new Button("OK");
              add(okButton);
              okButton.addActionListener(this);     
              addWindowListener(this);     
         public static void main(String[] args)
              Frame f = new Frame();
              f.show();
         public void actionPerformed(ActionEvent evt)
              if (evt.getSource()==okButton)
                   theString=inputField.getText();
                   parent.place(theString);
                   dispose();
        public void windowClosing(WindowEvent e) {
        dispose();
        public void windowIconi..........
    }          

  • ALT_GRAPH_MASK

    I'm having a strange problem with the alt_gr modifier on win98 using sun jdk1.3. Shift, ctrl and alt are working fine, but the alt_gr doesn't seem to correspond to its value in class InputEvent.
    KeyEvent.ALT_GRAPH_MASK in InputEvent (and KeyEvent) has this value:
    32d (or 100000b)
    When the alt_gr key is pressed, the modifier getModifier() in KeyEvent returns this:
    10d (or 1010b)
    So there's absolutely no correspondence between the two.
    Anybody else with this problem? And maybe a fix for it?

    Solved!
    In the latest version of jdk1.3 (jdk1.3.0_2) the problem has been solved. ALT_GRAPH_MASK equals the getModifiers() method.
    But remember, all previous versions (jdk1.1, jdk1.2, jdk1.3.0) do have this bug.

  • Rmiregistry crashing Java HotSpot VM on SGI machine

    Hello!
    I have created an application that uses RMI in Java to pass messages between one server and several clients. That is, the clients talk only to the server and not with each other. I've recently been tasked by my company to make this program work an an 8-processor 64-bit machine.
    I originally thought that it must have been something wrong with the code, seeing as how it was created on a Windows 32-bit machine, and now I'm trying to run it a Unix 64-bit machine. In fact our technology expert suggested that it may be ENDIAN issues... However, I've just about tracked down the problems I'm having to the rmiregistry.
    I think it is causing these random HotSpot VM crashes I've been having. The biggest reason I suspect this is because upon typing
    rmiregistry&
    in the console window, I have been able to get one of those crashes. This is before I have any code running, and yes, my path variables are set correctly and also my policy file is set to the correct path.
    Does anyone have any ideas? Thanks!

    At very first moment, I haven't used jdk from arch repo,
    so i was downloaded it from java.sun.com.
    and haven't any problem  jdk1.5.0 or 1.6  with Eclipse, though i didn't tried Azureus.
    PS: so my jdk-1.6.0 is under home directory.
    > pwd
    /home/<user_account>/jdk1.6.0
    >

  • How to deal with 500 Servlet Exception ?

    500 Servlet Exception
    Resin can't load sun.tools.javac.Main. Usually this means that the JDK tools.jar is missing from the classpath, possibly because of using a JRE instead of the JDK. You can either add tools.jar to the classpath or change the compiler to an external one with <java compiler='javac'/> or jikes.
    java.lang.ClassNotFoundException: sun.tools.javac.Main
    Resin 2.0.4 (built Thu Nov 15 17:56:24 PST 2001)
    get these messages(win98,apache1.3,jdk1.3,resin2.0)
    how to add tool.jar to the classpath?please detail.thanks!!

    Hi,
    You can just give a search for the directory contains the file tools.jar. And add the classpath like this
    SET CLASSPATH=c:\jdk1.3\lib\tools.jar
    You can double check the CLASSPATH in command prompt like this
    echo %CLASSPATH%
    If the CLASSPATH is set properly, you should see the tools.jar file in the CLASSPATH.
    Hope this helps.
    Best Luck!
    Senthil Babu J

  • VISTA FREEZES, even after update to SP1 Refresh (Jan. 11/

    I have been experiencing random complete computer freezes, where the speakers will make a brief noise then lockup with the rest of the computer.
    I've used all drivers that have been released, and I am currently using the Nov. 5th drivers on my Audigy 2 ZS.
    Recently updated my configuration to: Vista 32 SP Build.600.728 (v744, RC refresh, Jan , 08)
    yet the problem persists. For what it is worth, I have 3 GB of ram installed.
    Can someone from Creative please indicate in this thread that they actually take this matter seriously, and that they are working on improving the drivers?
    All I am asking for is some hope,
    Thank you.

    Now you know why Microsoft took the sound out of Kernal Space and placed it in User Space ,,,, Buggy/Crappy soundcards and drivers were the number one cause of Kernal crashes under XP (and Win98)
    Your problem now is you are using hacked drivers that are modified to allow use of old software that relies on the Kernal Mode and when they crash it takes down the Kernal along with it
    Remove every last trace of any Creative drivers you have on your system then reload the OFFICIAL Creative drivers ... You may still have a sound problem (But chances are you won't) but I bet it doesn't take down the Kernal so you can actually solve the real problem instead of having the computer lock up on you due to a Kernal crash
    Vista has the potential to be the hands down best version of Windows for Pro Audio but Creative can barely make basic drivers much less take advantage of the advanced features (RTwave) available under Vista

  • Java Hotspot VM crashing while printing

    Hi,
    my problem is that when i am trying to PRINT a specific set of sheets through my java application, the JVM is crashing along with clossing all the Internet Explorer windows used by the applicatioin.this behaviour is not consistent, it means sometimes it is working fine (without clossing any IE window), and sometimes not.but i am able to get the prinout everytime.
    system configuration- intel Xeon, 3.2 GHz, 3.50 GB RAM, Windows XP ProfessionalVersion 2002, SP2.
    i am also providing generated log file-
    please help me regarding this...
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x77f491c3, pid=2508, tid=3920
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_01-b08 mixed mode, sharing)
    # Problematic frame:
    # C [GDI32.dll+0x391c3]
    --------------- T H R E A D ---------------
    Current thread (0x05aa85e8): JavaThread "AWT-Windows" daemon [_thread_in_native, id=3920]
    siginfo: ExceptionCode=0xc0000005, reading address 0x00000034
    Registers:
    EAX=0x00000001, EBX=0x02b301d0, ECX=0x00000000, EDX=0x7c90eb94
    ESP=0x05f6f7a4, EBP=0x05f6f7a4, ESI=0x02b301d0, EDI=0x0000000c
    EIP=0x77f491c3, EFLAGS=0x00010282
    Top of Stack: (sp=0x05f6f7a4)
    0x05f6f7a4: 05f6f7b4 77f39e59 0001a848 0000000c
    0x05f6f7b4: 05f6f7d0 77f22880 0000000c 00000028
    0x05f6f7c4: 02b301d0 00010000 02b301d0 05f6f7e4
    0x05f6f7d4: 77f2281c 0000000c d4210b00 00000002
    0x05f6f7e4: 05f6f804 77f23711 d4210b00 00000002
    0x05f6f7f4: 00000028 000a0000 00000b55 0b000002
    0x05f6f804: 05f6f824 77f236ba f20a0b55 f20a0b55
    0x05f6f814: 05ae9590 00000000 0000f20a 00000000
    Instructions: (pc=0x77f491c3)
    0x77f491b3: 41 34 89 41 30 c3 90 90 90 90 90 8b ff 55 8b ec
    0x77f491c3: 8b 41 34 ff 75 0c 03 45 08 83 c1 40 50 e8 8b 6f
    Stack: [0x05e70000,0x05f70000), sp=0x05f6f7a4, free space=1021k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C [GDI32.dll+0x391c3]
    C [GDI32.dll+0x29e59]
    C [GDI32.dll+0x12880]
    C [GDI32.dll+0x1281c]
    C [GDI32.dll+0x13711]
    C [GDI32.dll+0x136ba]
    C [awt.dll+0xce064]
    C [awt.dll+0xce001]
    C [USER32.dll+0x8734]
    C [USER32.dll+0x8816]
    C [USER32.dll+0x89cd]
    C [USER32.dll+0x8a10]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j sun.awt.windows.WToolkit.eventLoop()V+0
    j sun.awt.windows.WToolkit.run()V+69
    j java.lang.Thread.run()V+11
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x05b0e900 JavaThread "Keep-Alive-Timer" daemon [_thread_blocked, id=3140]
    0x05bf10f8 JavaThread "TimerQueue" daemon [_thread_blocked, id=1412]
    0x0668d3d0 JavaThread "AWT-EventQueue-1" [_thread_blocked, id=3240]
    0x0670edf8 JavaThread "Thread-12" [_thread_in_native, id=3360]
    0x0667a4c0 JavaThread "TimerQueue" daemon [_thread_blocked, id=576]
    0x0663d8c0 JavaThread "UIServiceThread0:<null username>:mc0300ux710.apps.mc.xerox.com:7400:<null locale>" daemon [_thread_in_native, id=3408]
    0x06704a18 JavaThread "TimerQueue" daemon [_thread_blocked, id=2632]
    0x05ac7278 JavaThread "AWT-EventQueue-3" [_thread_blocked, id=2612]
    0x05ac3160 JavaThread "AWT-EventQueue-2" [_thread_blocked, id=2840]
    0x06703d78 JavaThread "thread applet-xerox.cec.mti.util.MTILaunchLoader.class" [_thread_blocked, id=3436]
    0x0667a058 JavaThread "thread applet-xerox.cec.mti.tasks.WorkDesktop.SplashScreenApplet.class" [_thread_blocked, id=3572]
    0x05aa81b8 JavaThread "AWT-EventQueue-0" [_thread_blocked, id=3772]
    0x05ab1990 JavaThread "AWT-Shutdown" [_thread_blocked, id=3220]
    0x05aadaa8 JavaThread "traceMsgQueueThread" [_thread_blocked, id=4016]
    =>0x05aa85e8 JavaThread "AWT-Windows" daemon [_thread_in_native, id=3920]
    0x05aa7158 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=3300]
    0x0212bc30 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=740]
    0x0212aa30 JavaThread "CompilerThread0" daemon [_thread_blocked, id=3712]
    0x02129c90 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=2468]
    0x02126668 JavaThread "Finalizer" daemon [_thread_blocked, id=376]
    0x02125ad8 JavaThread "Reference Handler" daemon [_thread_blocked, id=3872]
    0x02075fb8 JavaThread "main" [_thread_in_native, id=2592]
    Other Threads:
    0x02123240 VMThread [id=3888]
    0x0212d010 WatcherThread [id=3656]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 1600K, used 28K [0x22a80000, 0x22c30000, 0x22f60000)
    eden space 1472K, 1% used [0x22a80000, 0x22a87288, 0x22bf0000)
    from space 128K, 0% used [0x22bf0000, 0x22bf0000, 0x22c10000)
    to space 128K, 0% used [0x22c10000, 0x22c10000, 0x22c30000)
    tenured generation total 19944K, used 11966K [0x22f60000, 0x242da000, 0x26a80000)
    the space 19944K, 59% used [0x22f60000, 0x23b0f948, 0x23b0fa00, 0x242da000)
    compacting perm gen total 8192K, used 5396K [0x26a80000, 0x27280000, 0x2aa80000)
    the space 8192K, 65% used [0x26a80000, 0x26fc5360, 0x26fc5400, 0x27280000)
    ro space 8192K, 62% used [0x2aa80000, 0x2af87d30, 0x2af87e00, 0x2b280000)
    rw space 12288K, 46% used [0x2b280000, 0x2b80c8a0, 0x2b80ca00, 0x2be80000)
    Dynamic libraries:
    0x00400000 - 0x00419000      C:\Program Files\Internet Explorer\iexplore.exe
    0x7c900000 - 0x7c9b0000      C:\WINDOWS\system32\ntdll.dll
    0x7c800000 - 0x7c8f5000      C:\WINDOWS\system32\kernel32.dll
    0x77c10000 - 0x77c68000      C:\WINDOWS\system32\msvcrt.dll
    0x7e410000 - 0x7e4a0000      C:\WINDOWS\system32\USER32.dll
    0x77f10000 - 0x77f57000      C:\WINDOWS\system32\GDI32.dll
    0x77f60000 - 0x77fd6000      C:\WINDOWS\system32\SHLWAPI.dll
    0x77dd0000 - 0x77e6b000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77e70000 - 0x77f02000      C:\WINDOWS\system32\RPCRT4.dll
    0x77fe0000 - 0x77ff1000      C:\WINDOWS\system32\Secur32.dll
    0x7e290000 - 0x7e401000      C:\WINDOWS\system32\SHDOCVW.dll
    0x77a80000 - 0x77b14000      C:\WINDOWS\system32\CRYPT32.dll
    0x77b20000 - 0x77b32000      C:\WINDOWS\system32\MSASN1.dll
    0x754d0000 - 0x75550000      C:\WINDOWS\system32\CRYPTUI.dll
    0x76c30000 - 0x76c5e000      C:\WINDOWS\system32\WINTRUST.dll
    0x76c90000 - 0x76cb8000      C:\WINDOWS\system32\IMAGEHLP.dll
    0x77120000 - 0x771ab000      C:\WINDOWS\system32\OLEAUT32.dll
    0x774e0000 - 0x7761d000      C:\WINDOWS\system32\ole32.dll
    0x5b860000 - 0x5b8b4000      C:\WINDOWS\system32\NETAPI32.dll
    0x771b0000 - 0x7725a000      C:\WINDOWS\system32\WININET.dll
    0x76f60000 - 0x76f8c000      C:\WINDOWS\system32\WLDAP32.dll
    0x77c00000 - 0x77c08000      C:\WINDOWS\system32\VERSION.dll
    0x773d0000 - 0x774d3000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2982_x-ww_ac3f9c03\comctl32.dll
    0x7c9c0000 - 0x7d1d7000      C:\WINDOWS\system32\SHELL32.dll
    0x5d090000 - 0x5d12a000      C:\WINDOWS\system32\comctl32.dll
    0x5ad70000 - 0x5ada8000      C:\WINDOWS\system32\uxtheme.dll
    0x75f80000 - 0x7607d000      C:\WINDOWS\system32\BROWSEUI.dll
    0x20000000 - 0x20012000      C:\WINDOWS\system32\browselc.dll
    0x77b40000 - 0x77b62000      C:\WINDOWS\system32\appHelp.dll
    0x76fd0000 - 0x7704f000      C:\WINDOWS\system32\CLBCATQ.DLL
    0x77050000 - 0x77115000      C:\WINDOWS\system32\COMRes.dll
    0x77a20000 - 0x77a74000      C:\WINDOWS\System32\cscui.dll
    0x76600000 - 0x7661d000      C:\WINDOWS\System32\CSCDLL.dll
    0x77920000 - 0x77a13000      C:\WINDOWS\system32\SETUPAPI.dll
    0x7e1e0000 - 0x7e282000      C:\WINDOWS\system32\urlmon.dll
    0x10000000 - 0x10010000      C:\Program Files\Common Files\Adobe\Acrobat\ActiveX\AcroIEHelper.dll
    0x78130000 - 0x781cb000      C:\WINDOWS\WinSxS\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.163_x-ww_681e29fb\MSVCR80.dll
    0x14490000 - 0x144a4000      C:\Program Files\McAfee\VirusScan Enterprise\scriptcl.dll
    0x75c50000 - 0x75cbf000      C:\WINDOWS\system32\JScript.dll
    0x73300000 - 0x73367000      C:\WINDOWS\system32\VBScript.dll
    0x73dd0000 - 0x73ece000      C:\WINDOWS\system32\MFC42.DLL
    0x75e90000 - 0x75f40000      C:\WINDOWS\system32\SXS.DLL
    0x01000000 - 0x01088000      C:\WINDOWS\system32\shdoclc.dll
    0x01090000 - 0x01355000      C:\WINDOWS\system32\xpsp2res.dll
    0x75cf0000 - 0x75d81000      C:\WINDOWS\system32\mlang.dll
    0x71ad0000 - 0x71ad9000      C:\WINDOWS\system32\wsock32.dll
    0x71ab0000 - 0x71ac7000      C:\WINDOWS\system32\WS2_32.dll
    0x71aa0000 - 0x71aa8000      C:\WINDOWS\system32\WS2HELP.dll
    0x71a50000 - 0x71a8f000      C:\WINDOWS\system32\mswsock.dll
    0x662b0000 - 0x66308000      C:\WINDOWS\system32\hnetcfg.dll
    0x71a90000 - 0x71a98000      C:\WINDOWS\System32\wshtcpip.dll
    0x76ee0000 - 0x76f1c000      C:\WINDOWS\system32\RASAPI32.DLL
    0x76e90000 - 0x76ea2000      C:\WINDOWS\system32\rasman.dll
    0x76eb0000 - 0x76edf000      C:\WINDOWS\system32\TAPI32.dll
    0x76e80000 - 0x76e8e000      C:\WINDOWS\system32\rtutils.dll
    0x76b40000 - 0x76b6d000      C:\WINDOWS\system32\WINMM.dll
    0x5dac0000 - 0x5dac8000      C:\WINDOWS\system32\rdpsnd.dll
    0x76360000 - 0x76370000      C:\WINDOWS\system32\WINSTA.dll
    0x76bf0000 - 0x76bfb000      C:\WINDOWS\system32\PSAPI.DLL
    0x77c70000 - 0x77c93000      C:\WINDOWS\system32\msv1_0.dll
    0x76d60000 - 0x76d79000      C:\WINDOWS\system32\iphlpapi.dll
    0x722b0000 - 0x722b5000      C:\WINDOWS\system32\sensapi.dll
    0x769c0000 - 0x76a73000      C:\WINDOWS\system32\USERENV.dll
    0x7d1e0000 - 0x7d49e000      C:\WINDOWS\system32\msi.dll
    0x76f20000 - 0x76f47000      C:\WINDOWS\system32\DNSAPI.dll
    0x76fc0000 - 0x76fc6000      C:\WINDOWS\system32\rasadhlp.dll
    0x7dc30000 - 0x7df22000      C:\WINDOWS\system32\mshtml.dll
    0x746c0000 - 0x746e7000      C:\WINDOWS\system32\msls31.dll
    0x746f0000 - 0x7471a000      C:\WINDOWS\system32\msimtf.dll
    0x74720000 - 0x7476b000      C:\WINDOWS\system32\MSCTF.dll
    0x76390000 - 0x763ad000      C:\WINDOWS\system32\IMM32.DLL
    0x325c0000 - 0x325d2000      C:\Program Files\Microsoft Office\OFFICE11\msohev.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
    0x76200000 - 0x76271000      C:\WINDOWS\system32\mshtmled.dll
    0x71d40000 - 0x71d5c000      C:\WINDOWS\system32\actxprxy.dll
    0x6d590000 - 0x6d5a1000      C:\Program Files\Java\jre1.5.0_01\bin\npjpi150_01.dll
    0x5edd0000 - 0x5ede7000      C:\WINDOWS\system32\OLEPRO32.DLL
    0x6d400000 - 0x6d417000      C:\Program Files\Java\jre1.5.0_01\bin\jpiexp32.dll
    0x76fb0000 - 0x76fb8000      C:\WINDOWS\System32\winrnr.dll
    0x6d450000 - 0x6d468000      C:\Program Files\Java\jre1.5.0_01\bin\jpishare.dll
    0x6d640000 - 0x6d7c5000      C:\PROGRA~1\Java\JRE15~1.0_0\bin\client\jvm.dll
    0x6d280000 - 0x6d288000      C:\PROGRA~1\Java\JRE15~1.0_0\bin\hpi.dll
    0x6d610000 - 0x6d61c000      C:\PROGRA~1\Java\JRE15~1.0_0\bin\verify.dll
    0x6d300000 - 0x6d31d000      C:\PROGRA~1\Java\JRE15~1.0_0\bin\java.dll
    0x6d630000 - 0x6d63f000      C:\PROGRA~1\Java\JRE15~1.0_0\bin\zip.dll
    0x6d000000 - 0x6d166000      C:\Program Files\Java\jre1.5.0_01\bin\awt.dll
    0x73000000 - 0x73026000      C:\WINDOWS\system32\WINSPOOL.DRV
    0x73760000 - 0x737a9000      C:\WINDOWS\system32\ddraw.dll
    0x73bc0000 - 0x73bc6000      C:\WINDOWS\system32\DCIMAN32.dll
    0x6d240000 - 0x6d27d000      C:\Program Files\Java\jre1.5.0_01\bin\fontmanager.dll
    0x6d1f0000 - 0x6d203000      C:\Program Files\Java\jre1.5.0_01\bin\deploy.dll
    0x6d5d0000 - 0x6d5ed000      C:\Program Files\Java\jre1.5.0_01\bin\RegUtils.dll
    0x6d3e0000 - 0x6d3f4000      C:\Program Files\Java\jre1.5.0_01\bin\jpicom32.dll
    0x06480000 - 0x064d7000      C:\WINDOWS\system32\xpsp3res.dll
    0x6d4c0000 - 0x6d4d3000      C:\Program Files\Java\jre1.5.0_01\bin\net.dll
    0x6d3c0000 - 0x6d3df000      C:\Program Files\Java\jre1.5.0_01\bin\jpeg.dll
    0x74e30000 - 0x74e9c000      C:\WINDOWS\system32\RICHED20.DLL
    0x6d4e0000 - 0x6d4e9000      C:\Program Files\Java\jre1.5.0_01\bin\nio.dll
    0x763b0000 - 0x763f9000      C:\WINDOWS\system32\COMDLG32.DLL
    0x76840000 - 0x76873000      C:\WINDOWS\System32\spool\DRIVERS\W32X86\3\UNIDRVUI.DLL
    0x778d0000 - 0x77913000      C:\WINDOWS\System32\spool\DRIVERS\W32X86\3\UNIDRV.DLL
    0x686c0000 - 0x686c6000      C:\WINDOWS\System32\spool\DRIVERS\W32X86\3\hpcjrr.dll
    0x68630000 - 0x68634000      C:\WINDOWS\System32\spool\DRIVERS\W32X86\3\hpcstr.dll
    0x01a30000 - 0x01ad7000      C:\WINDOWS\System32\spool\DRIVERS\W32X86\3\pcl5eres.dll
    0x686d0000 - 0x686f3000      C:\WINDOWS\System32\spool\DRIVERS\W32X86\3\hpcfont.dll
    0x6d1c0000 - 0x6d1e3000      C:\Program Files\Java\jre1.5.0_01\bin\dcpr.dll
    VM Arguments:
    jvm_args: -Xbootclasspath/a:C:\PROGRA~1\Java\JRE15~1.0_0\lib\deploy.jar;C:\PROGRA~1\Java\JRE15~1.0_0\lib\plugin.jar -Xmx64m -Djavaplugin.maxHeapSize=64m -Xverify:remote -Djavaplugin.version=1.5.0_01 -Djavaplugin.nodotversion=150_01 -Dbrowser=sun.plugin -DtrustProxy=true -Dapplication.home=C:\PROGRA~1\Java\JRE15~1.0_0 -Djava.protocol.handler.pkgs=sun.plugin.net.protocol -Djavaplugin.vm.options=-Djava.class.path=C:\PROGRA~1\Java\JRE15~1.0_0\classes -Xbootclasspath/a:C:\PROGRA~1\Java\JRE15~1.0_0\lib\deploy.jar;C:\PROGRA~1\Java\JRE15~1.0_0\lib\plugin.jar -Xmx64m -Djavaplugin.maxHeapSize=64m -Xverify:remote -Djavaplugin.version=1.5.0_01 -Djavaplugin.nodotversion=150_01 -Dbrowser=sun.plugin -DtrustProxy=true -Dapplication.home=C:\PROGRA~1\Java\JRE15~1.0_0 -Djava.protocol.handler.pkgs=sun.plugin.net.protocol vfprintf
    java_command: <unknown>
    Environment Variables:
    JAVA_HOME=C:\Program Files\Java\jre1.5.0_01
    CLASSPATH=.;C:\Program Files\Java\jre1.5.0_01\lib;C:\Program Files\Java\lib;
    PATH=C:\PROGRA~1\Java\JRE15~1.0_0\bin;C:\Program Files\Internet Explorer;;C:\Program Files\CA\Dcs\DMScripting\;C:\Program Files\CA\DCS\CAWIN\;C:\oracle\ora90\bin;c:\program files\oracle\jre\1.1.8\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Oracle\instantclient10_1;C:\SDRC\I-DEAS11\Iona\OrbixE2A;C:\SDRC\I-DEAS11\Iona\OrbixE2A\bin;C:\SDRC\I-DEAS11\Iona\OrbixE2A\asp\5.1\bin;C:\Program Files\Common Files\Adaptec Shared\System;C:\Program Files\IONA\bin;C:\Program Files\IONA\asp\6.1\bin;C:\Program Files\CA\Unicenter Software Delivery\BIN;C:\Program Files\CA\SharedComponents\DTS\bin;C:\ca_appsw\;C:\PROGRA~1\CA\SHARED~1\CAM\bin;C:\Program Files\Java\jre1.5.0_01\bin;;.
    USERNAME=Uswu47848
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 15 Model 2 Stepping 5, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows XP Build 2600 Service Pack 2
    CPU:total 4 family 15, cmov, cx8, fxsr, mmx, sse, sse2, ht
    Memory: 4k page, physical 2097151k(2097151k free), swap 4194303k(4194303k free)
    vm_info: Java HotSpot(TM) Client VM (1.5.0_01-b08) for windows-x86, built on Dec 6 2004 19:51:00 by "java_re" with MS VC++ 6.0

    At very first moment, I haven't used jdk from arch repo,
    so i was downloaded it from java.sun.com.
    and haven't any problem  jdk1.5.0 or 1.6  with Eclipse, though i didn't tried Azureus.
    PS: so my jdk-1.6.0 is under home directory.
    > pwd
    /home/<user_account>/jdk1.6.0
    >

  • Jdk1.2.2 java commands problem on win98, win2000 and XP

    To Whom It May Concern:
    I have just bought a new PC and made 3 partitions on the hard drive, each of them has 10G space, to installed 3 operation systems on each of these partitions, win98se, win2000 and XP. Then I installed jdk1.2.2 on each of these operation systems. However, when I go into the �\jdk1.2.2\bin directory and run the executable commands, eg. javac and java etc., get the following different error messages on different operating systems. I have spent a lot of time on trying to fix these problems, however, no any luck. It will be very appreciated if you super expert can have some help on them.
    win98se
    After run the javac command, get the following error message displayed on a prompt with a Close and a Details buttons.
    This program has performed an illegal operation and will be shut down.
    If the problem persists, contact the program verdor.
    After click the Details button, get the following message:
    JAVA caused an invalid page fault in
    module SYMCJIT.DLL at 019f:500bf974.
    Registers:
    EAX=00000e03 CS=019f EIP=500bf974 EFLGS=00010206
    EBX=006539a0 SS=01a7 ESP=0063f894 EBP=00000e7f
    ECX=0000009f DS=01a7 ESI=00000e7f FS=3557
    EDX=00000003 ES=01a7 EDI=05110010 GS=0000
    Bytes at CS:EIP:
    f3 a5 ff 24 95 48 42 0c 50 8d 49 00 8d 74 31 fc
    Stack dump:
    500bf8c7 0000027f 500c42b0 5007cc24 05110010 00000e7f 0000027f 007608c0 00000283 006a81a8 006539a0 0063f940 006539e8 05110010 006539a0 00000e7f
    win2000
    After run the javac command, get the following error message displayed on a prompt with a OK button.
    java.exe has generated errors and will be closed by Windows. You will need to restart the program.
    An error log is being created.
    XP
    After run the javac command, get the following error message displayed on a prompt with a Send Error Report and Don't Send buttons.
    java.exe has encountered a problem and needs to close. We are sorry for the inconvenience.
    If you were in the middle of something, the informaiton you were working on might be lost.
    Please tell Micorsoft about this problem.
    We have created an error report that you can send to us. We will treat this report as confidential and enonymous.
    To see what this error report contains, click here.
    thanks and regards!
    ZhiCheng

    http://java-virtual-machine.net/tech-faq.html
    is a great link.
    It claims to have a newer, fixed version of problem DLL, SYMCJIT.DLL . Try that.
    The page has an Intel link that is out-of -date. The current Intel link is
    http://support.intel.com/support/processors/pentium4/sb/CS-007990.htm
    "CPUID detection for Intel� Pentium� 4 processor system"
    In two lines, they recommend:
    dir /s SYMCJIT.DLL
    ren SYMCJIT.DLL SYMCJIT.OLD
    Of course, Java will run slower, but JIT is a machine-specific concept and this *.DLL was coded to fail if it did not recognize the CPU type. Maybe not a great decision, but there you are.

  • Problems with JCWDE in Win98 (Please help)

    Dear all,
    I am using the Win98, Sun's JDK 1.3.0, I have also "installed" the JC development KIT 2.1.2, and the CommAPI (from which I can run the BlackBox Examples Properly).
    The problems are the following and I hope that you might be able to help:
    1) the build_samples needed some modification and only after after that I managed to get the examples compiled, etc.
    2) When I try to run the jcwde -p 9025 jcwde.app example from the /demo directory I get the following error messages:
    c:\j\jc\samples\src\demo>jcwde -p 9025 jcwde.app
    C:\J\JC\bin\jcwde.bat [18] Syntax error "c:\jbuilder5\jdk1.3\lib\comm.jar;C:\J\JC\samples\classes;C:\J\JC\lib\api21.jar;"
    C:\J\JC\bin\jcwde.bat [18] Syntax error "c:\jbuilder5\jdk1.3\lib\comm.jar;C:\J\
    JC\samples\classes;C:\J\JC\lib\api21.jar;.*"
    C:\J\JC\bin\jcwde.bat [18] Unknown command "\samples\classes;c:\jbuilder5\jdk1.3\lib\comm.jar;C:\J\JC\samples\classes;C:\J\JC\lib\api21.jar;"
    Java Card 2.1.2 Workstation Development Environment (version 0.18).
    Copyright (c) 2001 Sun Microsystems, Inc. All rights reserved.
    jcwde is listening for T=0 Apdu's on TCP/IP port 9,025.
    java.lang.ClassNotFoundException: com.sun.javacard.samples.JavaPurse.JavaPurse
    jcwde terminating on receipt of SimulationException. See previous messages for
    cause.
    I suspect something is wrong with the classpath but everything looks fine to me and I don't really know why I am getting this error message.
    This is my classpath :
    c:\jbuilder5\jdk1.3\lib\comm.jar;C:\J\JC\samples\classes;C:\J\JC\lib\api21.jar
    I also looked into Sun's forum and I have followed the instraction from below, I have also followed the installation instructions in the JC manual.
    I will appreciate it if you could Help,
    Regards,
    Kon
    See do you have the java card Developers kit user's Guide with
    you just go to page no 9 . you must be giving the jcwde -p 9025
    jcwde.app command ok .
    The first most important thing check if you are in demo dir This
    is most important .Also check if you set the JC21bin environment
    variable to bin subdirectory.Most of the time bcos of this you
    get that error so you have to make sure you have set the
    environment variable correct .
    Try this thing's out hope this help's you if still you find
    trouble just mail me at [email protected].
    Bye:)
    Neelesh dalvi

    Thanks for the reply,
    The JavaPurse.class file is in the specified directory.
    The problem is that even if I try to load another file (Wallet) which is compiled manually (not through the build.bat) file I got the same error message.
    It is true that the build.bat file for the JC2.1.2 needs some minor modifications in order to work otherwise it doesn't work in windows. I am surpised how it is released for the windows version without being properly tested.
    Is the JC2.1.1 version more stable to use ???
    Thanks,
    Kon

  • Oracle Lite + Resin + jdk1.2.2 or jdk 1.3.1 problem

    Hi!
    Can some one help me this the following:
    I used Oracle Lite database, Resin app server and jdk1.2.2
    When I try to connect my database through simple java-application, all goes fine! But, when I trying to get database communication from my application server and problem arise. First of all dll's such as
    OLJDBC40.DLL, OLAD2040.DLL, OLOBJ40.DLL, OLOD2040.DLL OLSQL40.DLL are in the Path and JVM loads them at runtime. I got connection to DB. Than I try to get some DatabaseMetaData info and got EXCEPTION_ACCESS_VIOLATION (for jdk1.3) and "java.exe has generated error (for jdk1.2.2)" errors from VM.
    So, any idea?
    Any help apriciated...
    RGS,
    parasolko

    Hi,
    I have got the similar problem when I used MS SQL server + Tomcat + JDK1.3.0 via JdbcOdbc driver. In that configuration the JVM crashs very often. It seems that JdbcOdbc's got unstable problem. Then, I tried other type 4 JDBC driver, it works fine and JVM won't crash. Try Sprinta 2000 JDBC driver, it's a type 4 driver and fast stable.
    Ma

Maybe you are looking for

  • How to use the same keypair for both encrypt/decryprt-SunPKCS#11

    Dear All, Subject: To access iKey 2032 token, to retrieve public/private key from iKey 2032 token using pkcs#11 in sdk1.5, to encrypt/decrypt files. When I separate the encrypt and decrypt part of java program, encryption program works well, whereas

  • Vendor Standard Letters - F.66

    Hi Is there a way that I can send the Vendor Standard Letters (Transaction F.66) via fax or email. At the moment we can only print these letters to the local printer. Thanx in advance. Regards, Utian Goliath

  • How to skip validation on page refresh

    Hello, I found related posts but they don't point me in the direction of a possible solution. I have a simple page <HTML> <HEAD> <title>Page 3</title> </HEAD> <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %> <%@ taglib uri="http://java.sun

  • Apple apps not working...pandora OK.

    Original ipad, worked fine for two weeks.  Now Pandora works but safari, i tunes, app store, ibooks store and ipod will not connect.  Any ideas ?- doesn't necessarily seem to be wifi since Pandora is working.

  • Resume playback of last position of shuffle

    Is there a way to make this thing (30 gig video) resume playback of shuffle position?? every time I plug it in to the PC to recharge or sync it, it looses place and I have to start all over with shuffle and due to the lack of randomize and random fun