JRE1.3.1 - No Swingall.jar ?

Hi, I am a Network Administrator (No Java programming knowledge)
When running the following application from Windows NT with Java Plugin 1.1, the application runs fine;
"C:\Program Files\Java Plug-in 1.1\bin\jrew.exe" -cp "c:\Program Files\Java Plug-in 1.1\lib\swingall.jar;j:\bin\apps\win32\crisp\crisp2.jar" JCrisp.Emulator 203.0.152.67
HOWEVER, after upgrading to JRE1.3.1, there is no SWINGALL.JAR to reference... When launched, we get the following error;
Java Virtual Machine launcher - Could not find the main class. Program will exit!
Does anyone know what the command line should be changed to under the new version of JRE ??
Thanks in advance,
Brett

If the old application was coded to run with swingall.jar and a 1.1.x version of the JRE, then it will be using class names that look like "com.sun.java.swing.something", I think. Those refer to the pre-release version of Swing that was used back then (1998-ish?) before 1.2 was released with the official version of Swing. In 1.2 and later, Swing classes have names like "javax.swing.something". That's why adding swingall.jar to your classpath appears to fix the problem, because you are providing the obsolete classes that the application was compiled to use. I have no way of predicting what other problems this might cause, though, since I know nothing about the application.

Similar Messages

  • Need the latest swingall.jar

    Hi All,
    I have a java swing application. When I updated the jre used by the application to the latest v1.4.2_06, there is a issue. During the launch of this application a screen(basically a gif file) is loaded. This screen keeps flickering and does not load properly.
    I guess I have to update the swing.jar file to the latest one ?
    Anyone has had this sort of an issue ?
    Where do I get the latest swingall.jar file from ?
    Thanks,
    Anand.

    You have java 1.4.2_06? There's no swingall.jar for that. swingall.jar was only released to be used with Java 1.1 VMs to allow them to use Swing.
    If you have flickering problems, it's your code that's the problem most likely.
    Otherwise, try a higher version. 1.4.2_07 or 1.5.x

  • Ojdbc14.jar connect to 10g so slow with JRE1.5.0_05

    Our guests complained the speed is so slow that they can not stand up with this...
    So I run the tests base on JRE1.5.0_05 and ojdbc14.jar and Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod
    try {
                        Class.forName("oracle.jdbc.driver.OracleDriver");
                        String url = "jdbc:oracle:thin:@//host:1521/orcl";
                        Date now = new Date();
                        Connection conn = DriverManager.getConnection(url, "user",
                                  "password");
                        System.out.println(System.currentTimeMillis() - now.getTime());
                        conn.setAutoCommit(false);
                        Statement stmt = conn.createStatement();
                        ResultSet rset = stmt
                                  .executeQuery("select BANNER from SYS.V_$VERSION");
                        while (rset.next()) {
                             System.out.println(rset.getString(1));
                        stmt.close();
                        System.out.println("Ok.");
                   } catch (Exception ex) {
                        ex.printStackTrace();
    The output is :
    4875
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod
    PL/SQL Release 10.2.0.1.0 - Production
    CORE     10.2.0.1.0     Production
    TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    Ok.
    the statement Connection conn = DriverManager.getConnection(url, "user", "password") execution time is 4875 milliseconds!!!!!
    so i switched to 9i the output is:
    0
    Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production
    PL/SQL Release 9.2.0.1.0 - Production
    CORE     9.2.0.1.0     Production
    TNS for 32-bit Windows: Version 9.2.0.1.0 - Production
    NLSRTL Version 9.2.0.1.0 - Production
    Ok.
    I change the JDK version to 1.4 or 1.6 the execution time is also 0.
    I walk through the internet and finally found the solution:
    ProxySelector.setDefault(null);
    But i am still confused when it come to the same environment the same code to connect to the 9i,10g, the getConnection() method execution time is so different without the statement ProxySelector.setDefault(null). so I suspect that this is an issue to 10g not the JDK1.5.x.
    Edited by: user12084131 on 2010-9-20 上午1:46
    Edited by: user12084131 on 2010-9-20 上午1:47

    Thanks for the reply,
    One correction to the above <Corrected now in my original post>
    Its connecting to " com.bea:ServerRuntime=managed03,Name=managed03,Type=JRockitRuntime"
    Tried with previous version again, it works perfect. But i still have issue with new JRE version.
    Regards,
    Rana
    Edited by: user13387204 on 02-Oct-2010 19:01

  • Modifying existing jar file, how?

    Hi there,
    I have a problem trying to modify an existing jar file. When I want to create a jar file, I use something like:
    REM build the application on windows, assuming the java/bin
    REM directory is in the path environment variable
    REM application is just the directory I am using
    SET cp = c:\application\TestApp
    javac -classpath %cp% TestApp.java
    REM ****************************************
    REM do packaging and adding manifest
    REM ****************************************
    jar cvfm App.jar manifest.mf TestApp*.class
    REM ****************************************
    REM run the jar file
    REM ****************************************
    javaw -jar App.jar
    But now, I have an existing jar file (swingall.jar) and I want to modify a class within that file. So, I modified the .java file, and compiled it to get my new class file.
    And the question is, how do I modify the existing file, so that I keep everything the same, except the modified class?
    Thanks
    Fernando

    I have just found out that I can't use "u". It seemsthat's only
    possible with older versions of jar.Huh? I'm using the 1.4.2-b28 jdk, it's still there,
    and I don't see how it could ever possibly be
    removed.
    Type:
    jar
    with no arguments to see all the options to jar.I already did, to double check it, and this is what I got:
    C:\Documents and Settings\Fernando Sanz>jar
    Usage: jar {ctx}[vfm0M] [jar-file] [manifest-file] files ...
    Options:
    -c create new archive
    -t list table of contents for archive
    -x extract named (or all) files from archive
    -v generate verbose output on standard error
    -f specify archive file name
    -m include manifest information from specified manifest file
    -0 store only; use no ZIP compression
    -M Do not create a manifest file for the entries
    If any file is a directory then it is processed recursively.
    The manifest file name and the archive file name needs to be specified
    in the same order the 'm' and 'f' flags are specified.
    Example: to archive two class files into an archive called classes.jar:
    jar cvf classes.jar Foo.class Bar.class
    Note: use the '0' option to create a jar file that can be put in your CLASSPATH
    Thanks for trying with jdk 1.4, I don't have it installed in my computer right now, so I'll try tomorrow with another computer at Uni.
    Thanks!

  • Jar file for multiple client JRE version

    I have two jar file. Fjtable.jar & fjtable16.jar
    fjtable.jar is for clients those who are using JRE 1.5 & fjtable16.jar is for jre 1.6 version client Users.
    both the jar file i have given in
    In formsweb.cfg :
    Archive = fjtable.jar , fjtable16.jar
    But this give error when accessing forms for those jre1.5 users.
    Exception in thread "AWT-EventQueue-2" java.lang.UnsupportedClassVersionError: Bad version number in .class file
    How do i give a condition in formsweb.cfg, if client java is jre1.5 then use fjtable.jar else use fjtable16.jar.

    It's used in the page that calls the Forms configuration with the correct jars : this should tell you which JRE your client is on and can be adapted for your config:
    <html>
    <body>
    <table width="100%">
    <tr><td>Click on the link below to run your app:
    <script src="http://www.java.com/js/deployJava.js"></script>
    <script>
        var version = '1.6' ;
        if (deployJava.versionCheck(version)) {
          document.write("<a href=\"http://myhost.local/forms/frmservlet?config=app16\">MyApp v1.6</a>");
        } else {
          document.write("<a href=\"http://myhost.local/forms/frmservlet?config=app15\">MyApp v1.5</a>");
    </script>
    </td></tr>
    </table>
    </body>
    </html>PS. Thanks Francois I'm sure this'll come in useful at some point know how to do this :)
    Steve

  • Ant in Eclipse Builds a Corrupt JAR

    When I build a JAR file in Eclipse using an Ant build file, the resulting JAR is corrupt. It cannot find the main class. Repairing the JAR using WinRAR fixes this issue. WinRAR reports repairing corrupt header information. This issue does not occur when manually exporting a JAR from Eclipse. In all cases, we are using the same manifest file. The Ant compile does not show any warnings or errors. The exact runtime error when executing the corrupt JAR is: "Could not find the main class. Program will exit."
    I am relatively new to Ant. I have searched the forums and google, but I have been unable to find anyone describing similar issues. I have spent three weeks trying to make this code work. None of the tutorials or FAQs I have found mention this issue, and none of the techniques they describe resolve it. Do you have any idea what might be causing this issue, or how to resolve it? The main reason I want to use Ant is to automate our build process. We can't do that if we have to manually repair the resulting JAR file after each build. I'm probably missing something obvious, but I don't have the Ant experience to know what that is. Any help would be greatly appreciated.
    Ant Version: 1.7
    Eclipse Version: 3.3.1.1
    Java Version: 1.6.0.3
    Platform: Windows XP (SP2)
    My build file (replacing my login with 'username' for privacy purposes):
    <?xml version="1.0" encoding="utf8"?>
    <project name="ecsMerlinJarBuild" default="MakeMerlinJar" basedir=".">
    <target name="Initialize" description="delete old .class files">
    <delete dir="JavaSource\com\ebsco\component" includes="*.class" />
    <delete dir="JavaSource\com\ebsco\core" includes="*.class" />
    <delete dir="JavaSource\com\ebsco\dao" includes="*.class" />
    <delete dir="JavaSource\com\ebsco\datatype" includes="*.class" />
    <delete dir="JavaSource\com\ebsco\dto" includes="*.class" />
    <delete dir="JavaSource\com\ebsco\interfaces" includes="*.class" />
    <delete dir="JavaSource\com\ebsco\module" includes="*.class" />
    <delete dir="JavaSource\com\ebsco\parents" includes="*.class" />
    <delete dir="JavaSource\com\ebsco\process" includes="*.class" />
    <delete dir="JavaSource\com\ebsco\screen" includes="*.class" />
    <delete dir="JavaSource\com\ebsco\util" includes="*.class" />
    <delete dir="JavaSource\com\ebsco\window" includes="*.class" />
    <delete dir="JavaSource\com\ebsco\windowwrapper" includes="*.class" />
    </target>
    <target name="Compile" description="Compile .java files">
    <javac srcdir="JavaSource\com" includes="ebsco\**\*.java" bootclasspath="C:\\Program Files\\Java\\jre1.6.0_03\\lib\\rt.jar" classpath="C:\\Documents and Settings\\username\\workspace\\merlin\\IBMLibraries.jar" />
    </target>
    <target name ="MakeMerlinJar" description="Create a jar for the Merlin project">
    <jar jarfile="Merlin.jar" excludes="*.jar, *.zip" manifest="MANIFEST.txt" update="true" duplicate="fail" >
    <zipfileset dir="JavaSource\com\ebsco\component" includes="*.class" prefix="com\ebsco\component" />
    <zipfileset dir="JavaSource\com\ebsco\core" includes="*.class" prefix="com\ebsco\core" />
    <zipfileset dir="JavaSource\com\ebsco\dao" includes="*.class" prefix="com\ebsco\dao" />
    <zipfileset dir="JavaSource\com\ebsco\datatype" includes="*.class" prefix="com\ebsco\datatype" />
    <zipfileset dir="JavaSource\com\ebsco\dto" includes="*.class" prefix="com\ebsco\dto" />
    <zipfileset dir="JavaSource\com\ebsco\interfaces" includes="*.class" prefix="com\ebsco\interfaces" />
    <zipfileset dir="JavaSource\com\ebsco\module" includes="*.class" prefix="com\ebsco\module" />
    <zipfileset dir="JavaSource\com\ebsco\parents" includes="*.class" prefix="com\ebsco\parents" />
    <zipfileset dir="JavaSource\com\ebsco\process" includes="*.class" prefix="com\ebsco\process" />
    <zipfileset dir="JavaSource\com\ebsco\screen" includes="*.class" prefix="com\ebsco\screen" />
    <zipfileset dir="JavaSource\com\ebsco\util" includes="*.class" prefix="com\ebsco\util" />
    <zipfileset dir="JavaSource\com\ebsco\window" includes="*.class" prefix="com\ebsco\window" />
    <zipfileset dir="JavaSource\com\ebsco\windowwrapper" includes="*.class" prefix="com\ebsco\windowwrapper" />
    <zipfileset dir="." includes=".classpath, .project, *.txt, *.xml" />
    </jar>
    </target>
    <target name="CopyJarFile" description="Copy the Merlin jar file to the set destination">
    <copy file="Merlin.jar" todir="C:\\Documents and Settings\\username\\Desktop\\JARs"/>
    </target>
    </project>

    And presumably that class actually exists? I can't see any reason why this build file wouldn't work, although I don't know why you're using zipfilesets. Maybe that's the problem. Another option is to export the jar from Eclipse, and ask it to generate an Ant script at the same time.
    But really, you ought to have a look at some [Ant tutorials|http://ant.apache.org/manual/index.html] , or better yet, get your company to buy a copy of [this book|http://www.amazon.co.uk/Java-Development-Ant-Erik-Hatcher/dp/1930110588/ref=sr_1_3?ie=UTF8&s=books&qid=1210364234&sr=8-3] because you're making more work for yourself than you need to here. For instance, you can use "**/*" to recursively include entire directory trees, rather than explicitly include each one

  • PlugIn and Swingall for applets not enough

    I've seen a lot of messages for applets that won't work with the sun plugin. I have the plugin installed; I have also added swingall.jar to my applet directory and set the ARCHIVE value to it, and can see it being processed. I still get 'class not found' with the following example. A clear answer to how to solve this would be helpful to a lot of people. (And yes, I've run the HTML converter.)
    Jbuilder 4.0 automatically adds action listeners for buttons, the browser cannot find the class for this:
    jButton2.addActionListener(new java.awt.event.ActionListener() {
    This line is listed with java.lang.NoClassDefFoundError in the java plugin console.
    The code runs fine in the applet viewer.
    What else has to be included for this applet to run with the plugin?

    hello; i just erased the post i started with, because my status has changed. i searched in the firefox folder and found the uninstall folder, and this time, uninstall worked perfectly, and it gave me an option to save my personal info! YAY! i installed ff 3.6.24 without a hitch; FF is Baaaaaack!
    However, I did get a window saying my computer doesn't have enough resources for the latest version of 8, but that I should install the latest compatible version of firefox; which version would that be, I wonder? It takes me to the same page with the ff 3.6.24 downloads. I already have that now.
    I am going to mark this as solved; thank you cor-el for helping me with this problem and sticking with me as i whined and moaned, and tried to get the courage to "just do it!"

  • Look & Feel Problem when switching to JRE1.6.0_10 (GTK error on fedora 9)

    Hi,
    I have switched a Swing app I'm developping from openjdk to sun jdk1.6.0_10 in order to track memory leacks (the profiler I wish to use tells me openjdk is not stable enough to get itself installed).
    Now I have problems displaying some of the GUI components : background in some JPanel herited classes (propertysheet l2fprod component), buttons on combo boxes.
    I get these messages in the console :*
    +(<unknown>:6330): Gtk-WARNING **: Attempting to add a widget with type GtkButton to a GtkComboBoxEntry (need an instance of GtkEntry or of a subclass)+
    +(<unknown>:6330): Gtk-CRITICAL **: gtk_widget_realize: assertion `GTK_WIDGET_ANCHORED (widget) || GTK_IS_INVISIBLE (widget)' failed+
    +(<unknown>:6330): Gtk-CRITICAL **: gtk_paint_box: assertion `style->depth == gdk_drawable_get_depth (window)' failed+
    +(<unknown>:6330): Gtk-CRITICAL **: gtk_paint_box: assertion `style->depth == gdk_drawable_get_depth (window)' failed+
    As far as I know it's running fine under XP with jre 1.6.0_07. The problems occurs at runtime with jre1.6.0_10 on Fedora9. It's okay if I launch it with openjdk (but I can't use my profiler !). I didn't try other jre versions on my Linux box neither I know if the problem occurs under XP with jre1.6.0_10.
    Here's the config I have this problem on :_
    OS/Desktop : Fedora 9 (kernel 2.6.25.14.fc9.i686), GNOME 2.22.3
    VM : Java HotSpot(TM) Client VM version 11.0-b15
    Library path:
    /usr/java/jre1.6.0_10/lib/i386/client:/usr/java/jre1.6.0_10/lib/i386:/usr/java/jre1.6.0_10/../lib/i386:/usr/java/packages/lib/i386:/lib:/usr/lib
    Boot class path:
    /usr/java/jre1.6.0_10/lib/resources.jar:/usr/java/jre1.6.0_10/lib/rt.jar:/usr/java/jre1.6.0_10/lib/sunrsasign.jar:/usr/java/jre1.6.0_10/lib/jsse.jar:/usr/java/jre1.6.0_10/lib/jce.jar:/usr/java/jre1.6.0_10/lib/charsets.jar:/usr/java/jre1.6.0_10/classes
    Any Ideas ?
    Edited by: squiggly on Oct 24, 2008 1:59 AM

    I have no experience with cscript, but by typing cscript in a command prompt i get:
    Microsoft (R) Windows Script Host Version 5.7
    Copyright (C) Microsoft Corporation. All rights reserved.
    Usage: CScript scriptname.extension [option...] [arguments...]
    Options:
    //B         Batch mode: Suppresses script errors and prompts from displaying
    //D         Enable Active Debugging
    //E:engine  Use engine for executing script
    //H:CScript Changes the default script host to CScript.exe
    //H:WScript Changes the default script host to WScript.exe (default)
    //I         Interactive mode (default, opposite of //B)
    //Job:xxxx  Execute a WSF job
    //Logo      Display logo (default)
    //Nologo    Prevent logo display: No banner will be shown at execution time
    //S         Save current command line options for this user
    //T:nn      Time out in seconds:  Maximum time a script is permitted to run
    //X         Execute script in debugger
    //U         Use Unicode for redirected I/O from the consoleDoesn't this mean that the script file name should come before the option (//Nologo)?
    I run XP SP 3.

  • EXCEPTION_ACCESS_VIOLATION and msctfime.ime

    I've recently been getting reports from some users (all at the one office) of intermittent crashes with the JVM.
    I'm hoping that someone might be able to shed some light.
    The crash log is below. It seems related to msctfime.ime. I'm not exactly sure what this does but I'm pretty sure
    the users are not doing anything unusual. They are all using 1.5.0_05-b05 and I've asked them to upgrade to 1.5.0_06
    in the hope it might fix the problem, however I don't see something like this in the changle log so it may be to no avail.
    Note that I use foxtrot in this application but the crash occurs in the AWT-Windows thread so I don't think it is related
    (at least I hope not).
    Ideas?
    # An unexpected error has been detected by HotSpot Virtual Machine:
    #  EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x755c5520, pid=1288, tid=188
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_05-b05 mixed mode)
    # Problematic frame:
    # C  [msctfime.ime+0x5520]
    ---------------  T H R E A D  ---------------
    Current thread (0x0083ce80):  JavaThread "AWT-Windows" daemon [_thread_in_native, id=188]
    siginfo: ExceptionCode=0xc0000005, reading address 0x00000078
    Registers:
    EAX=0x00000064, EBX=0x00000000, ECX=0x0008de00, EDX=0x00080608
    ESP=0x1dc1f7bc, EBP=0x1dc1f7c4, ESI=0x80004005, EDI=0x0008de00
    EIP=0x755c5520, EFLAGS=0x00010202
    Top of Stack: (sp=0x1dc1f7bc)
    0x1dc1f7bc:   0008de00 0008de00 1dc1f808 755c567c
    0x1dc1f7cc:   1dc1f800 1dc1f7f0 0008de00 000ad608
    0x1dc1f7dc:   755c1444 000fc828 00a60301 00000000
    0x1dc1f7ec:   00000000 755c1520 001148a0 003800ec
    0x1dc1f7fc:   00000000 755c62bf 000ad608 1dc1f858
    0x1dc1f80c:   755c62ce 000e4fd0 77d4c43c 00000000
    0x1dc1f81c:   00000000 00000000 1dc1f850 77d48709
    0x1dc1f82c:   0032027a 0000c186 00000000 00000000
    Instructions: (pc=0x755c5520)
    0x755c5510:   00 85 c0 75 0b 8b 4d 08 50 e8 4b fc ff ff eb 26
    0x755c5520:   ff 70 14 8d 4d f8 e8 3e fc ff ff 8b 4d 08 8d 45
    Stack: [0x1dbe0000,0x1dc20000),  sp=0x1dc1f7bc,  free space=253k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C  [msctfime.ime+0x5520]
    C  [msctfime.ime+0x567c]
    C  [msctfime.ime+0x62ce]
    C  [msctfime.ime+0x6f7a]
    C  [msctfime.ime+0x196e0]
    C  [IMM32.DLL+0x2ae3]
    C  [IMM32.DLL+0x2772]
    C  [awt.dll+0xc54ca]
    C  [USER32.dll+0x8709]
    C  [USER32.dll+0x87eb]
    C  [USER32.dll+0xb368]
    C  [USER32.dll+0xb3b4]
    C  [ntdll.dll+0xeae3]
    C  [USER32.dll+0x93df]
    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 )
      0x21118b70 JavaThread "Thread-76" [_thread_blocked, id=1016]
      0x21116e80 JavaThread "Thread-75" [_thread_blocked, id=1072]
      0x2110f400 JavaThread "Keep-Alive-Timer" daemon [_thread_blocked, id=2496]
      0x008ba090 JavaThread "Foxtrot Default Worker Thread" daemon [_thread_blocked, id=2000]
      0x00883280 JavaThread "Thread-28" [_thread_blocked, id=3888]
      0x00880540 JavaThread "Thread-27" [_thread_in_native, id=1636]
      0x00874dc0 JavaThread "TimerQueue" daemon [_thread_blocked, id=1056]
      0x0084a0a0 JavaThread "AWT-EventQueue-0" [_thread_in_native, id=3832]
      0x0084ae80 JavaThread "AWT-Shutdown" [_thread_blocked, id=344]
      0x0082d0a0 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=436]
      0x00842a80 JavaThread "DestroyJavaVM" [_thread_blocked, id=4088]
      0x0083d6b0 JavaThread "traceMsgQueueThread" daemon [_thread_blocked, id=1316]
    =>0x0083ce80 JavaThread "AWT-Windows" daemon [_thread_in_native, id=188]
      0x00833b40 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=1828]
      0x00832e70 JavaThread "CompilerThread0" daemon [_thread_blocked, id=1836]
      0x00831d50 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=1520]
      0x00830a00 JavaThread "Surrogate Locker Thread (CMS)" daemon [_thread_blocked, id=288]
      0x0082fde0 JavaThread "Finalizer" daemon [_thread_blocked, id=3920]
      0x0082eb20 JavaThread "Reference Handler" daemon [_thread_blocked, id=224]
    Other Threads:
      0x0082ddd0 VMThread [id=1272]
      0x00834700 WatcherThread [id=264]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation   total 4032K, used 2399K [0x02b90000, 0x02f90000, 0x02f90000)
      eden space 3968K,  60% used [0x02b90000, 0x02de7c68, 0x02f70000)
      from space 64K,   0% used [0x02f70000, 0x02f70000, 0x02f80000)
      to   space 64K,   0% used [0x02f80000, 0x02f80000, 0x02f90000)
    concurrent mark-sweep generation total 29244K, used 12140K [0x02f90000, 0x04c1f000, 0x0ab90000)
    concurrent-mark-sweep perm gen total 31876K, used 19148K [0x0ab90000, 0x0cab1000, 0x0eb90000)
    Dynamic libraries:
    0x00400000 - 0x0040c000            C:\Program Files\Java\jre1.5.0_05\bin\javaw.exe
    0x7c900000 - 0x7c9b0000            C:\WINNT\system32\ntdll.dll
    0x7c800000 - 0x7c8f4000            C:\WINNT\system32\kernel32.dll
    0x77dd0000 - 0x77e6b000            C:\WINNT\system32\ADVAPI32.dll
    0x77e70000 - 0x77f01000            C:\WINNT\system32\RPCRT4.dll
    0x77d40000 - 0x77dd0000            C:\WINNT\system32\USER32.dll
    0x77f10000 - 0x77f56000            C:\WINNT\system32\GDI32.dll
    0x77c10000 - 0x77c68000            C:\WINNT\system32\MSVCRT.dll
    0x76390000 - 0x763ad000            C:\WINNT\system32\IMM32.DLL
    0x629c0000 - 0x629c9000            C:\WINNT\system32\LPK.DLL
    0x74d90000 - 0x74dfb000            C:\WINNT\system32\USP10.dll
    0x6d640000 - 0x6d7cc000            C:\Program Files\Java\jre1.5.0_05\bin\client\jvm.dll
    0x76b40000 - 0x76b6d000            C:\WINNT\system32\WINMM.dll
    0x6d280000 - 0x6d288000            C:\Program Files\Java\jre1.5.0_05\bin\hpi.dll
    0x76bf0000 - 0x76bfb000            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
    0x73000000 - 0x73026000            C:\WINNT\system32\WINSPOOL.DRV
    0x774e0000 - 0x7761c000            C:\WINNT\system32\ole32.dll
    0x5ad70000 - 0x5ada8000            C:\WINNT\system32\uxtheme.dll
    0x73760000 - 0x737a9000            C:\WINNT\system32\ddraw.dll
    0x73bc0000 - 0x73bc6000            C:\WINNT\system32\DCIMAN32.dll
    0x73940000 - 0x73a10000            C:\WINNT\system32\D3DIM700.DLL
    0x74720000 - 0x7476b000            C:\WINNT\system32\MSCTF.dll
    0x755c0000 - 0x755ee000            C:\WINNT\system32\msctfime.ime
    0x77fe0000 - 0x77ff1000            C:\WINNT\system32\Secur32.dll
    0x76fd0000 - 0x7704f000            C:\WINNT\system32\CLBCATQ.DLL
    0x77120000 - 0x771ac000            C:\WINNT\system32\OLEAUT32.dll
    0x77050000 - 0x77115000            C:\WINNT\system32\COMRes.dll
    0x77c00000 - 0x77c08000            C:\WINNT\system32\VERSION.dll
    0x6d1f0000 - 0x6d203000            C:\Program Files\Java\jre1.5.0_05\bin\deploy.dll
    0x771b0000 - 0x77256000            C:\WINNT\system32\WININET.dll
    0x77f60000 - 0x77fd6000            C:\WINNT\system32\SHLWAPI.dll
    0x77a80000 - 0x77b14000            C:\WINNT\system32\CRYPT32.dll
    0x77b20000 - 0x77b32000            C:\WINNT\system32\MSASN1.dll
    0x77260000 - 0x772fc000            C:\WINNT\system32\urlmon.dll
    0x7c9c0000 - 0x7d1d4000            C:\WINNT\system32\SHELL32.dll
    0x773d0000 - 0x774d2000            C:\WINNT\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2180_x-ww_a84f1ff9\comctl32.dll
    0x5d090000 - 0x5d127000            C:\WINNT\system32\comctl32.dll
    0x6d5d0000 - 0x6d5ed000            C:\Program Files\Java\jre1.5.0_05\bin\RegUtils.dll
    0x7d1e0000 - 0x7d492000            C:\WINNT\system32\msi.dll
    0x769c0000 - 0x76a73000            C:\WINNT\system32\USERENV.dll
    0x76ee0000 - 0x76f1c000            C:\WINNT\system32\RASAPI32.DLL
    0x76e90000 - 0x76ea2000            C:\WINNT\system32\rasman.dll
    0x71ab0000 - 0x71ac7000            C:\WINNT\system32\WS2_32.dll
    0x71aa0000 - 0x71aa8000            C:\WINNT\system32\WS2HELP.dll
    0x5b860000 - 0x5b8b4000            C:\WINNT\system32\NETAPI32.dll
    0x76eb0000 - 0x76edf000            C:\WINNT\system32\TAPI32.dll
    0x76e80000 - 0x76e8e000            C:\WINNT\system32\rtutils.dll
    0x722b0000 - 0x722b5000            C:\WINNT\system32\sensapi.dll
    0x6d4c0000 - 0x6d4d3000            C:\Program Files\Java\jre1.5.0_05\bin\net.dll
    0x71a50000 - 0x71a8f000            C:\WINNT\system32\mswsock.dll
    0x662b0000 - 0x66308000            C:\WINNT\system32\hnetcfg.dll
    0x71a90000 - 0x71a98000            C:\WINNT\System32\wshtcpip.dll
    0x71ad0000 - 0x71ad9000            C:\WINNT\system32\wsock32.dll
    0x6d240000 - 0x6d27d000            C:\Program Files\Java\jre1.5.0_05\bin\fontmanager.dll
    0x76f20000 - 0x76f47000            C:\WINNT\system32\DNSAPI.dll
    0x76fb0000 - 0x76fb8000            C:\WINNT\System32\winrnr.dll
    0x76f60000 - 0x76f8c000            C:\WINNT\system32\WLDAP32.dll
    0x76fc0000 - 0x76fc6000            C:\WINNT\system32\rasadhlp.dll
    0x6d4e0000 - 0x6d4e9000            C:\Program Files\Java\jre1.5.0_05\bin\nio.dll
    0x6d1c0000 - 0x6d1e3000            C:\Program Files\Java\jre1.5.0_05\bin\dcpr.dll
    0x763b0000 - 0x763f9000            C:\WINNT\system32\COMDLG32.DLL
    0x641a0000 - 0x64216000            C:\WINNT\System32\spool\DRIVERS\W32X86\2\DC405EU.DLL
    0x64100000 - 0x64134000            C:\WINNT\System32\spool\DRIVERS\W32X86\2\DC405EC.DLL
    0x1ea30000 - 0x1ea43000            C:\WINNT\System32\spool\DRIVERS\W32X86\2\DC405EL.DLL
    0x64150000 - 0x64169000            C:\WINNT\System32\spool\DRIVERS\W32X86\2\DC405EX.DLL
    0x64180000 - 0x64191000            C:\WINNT\System32\spool\DRIVERS\W32X86\2\DC405EF.DLL
    0x64000000 - 0x6403c000            C:\WINNT\System32\spool\DRIVERS\W32X86\2\DC405EBU.DLL
    0x77920000 - 0x77a13000            C:\WINNT\system32\SETUPAPI.dll
    VM Arguments:
    jvm_args: -Xmx128m -Xincgc -Xbootclasspath/a:C:\Program Files\Java\jre1.5.0_05\lib\javaws.jar;C:\Program Files\Java\jre1.5.0_05\lib\deploy.jar -Djnlpx.home=C:\Program Files\Java\jre1.5.0_05\bin -Djnlpx.splashport=1185 -Djnlpx.jvm="C:\Program Files\Java\jre1.5.0_05\bin\javaw.exe" -Djnlpx.remove=true -Djava.security.policy=file:C:\Program Files\Java\jre1.5.0_05\lib\security\javaws.policy -DtrustProxy=true -Xverify:remote -Djnlpx.heapsize=NULL,128m -Djnlpx.vmargs=" -Xincgc"
    java_command: com.sun.javaws.Main C:\DOCUME~1\DDBuser\LOCALS~1\Temp\javaws2
    Environment Variables:
    PATH=C:\Program Files\Java\jre1.5.0_05\bin;C:\WINNT\system32;C:\WINNT;C:\WINNT\system32\WBEM;"C:\Program Files\Java\jre1.5.0_05\bin"
    USERNAME=puaysang.kwek
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 15 Model 2 Stepping 4, GenuineIntel
    ---------------  S Y S T E M  ---------------
    OS: Windows XP Build 2600 Service Pack 2
    CPU:total 1 family 15, cmov, cx8, fxsr, mmx, sse, sse2, ht
    Memory: 4k page, physical 261108k(21240k free), swap 639356k(303236k 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

    Thanks for the suggestion, but I'm not using jni at all. From what I can tell,
    msctfime.ime is the microsoft text frame service used by input method editors
    (i.e. non english language data entry). This problem is appearing on 3 of 6 pcs
    in a Singapore office so it could be related to the way the jvm interacts with
    this service. I reconfigured my XP to use Chinese (singapore) locale and
    asian language support but I just can't reproduce this problem no matter what I try.
    If 1.5.0_06 does not fix the problem, I may end up forcing them to
    downgrade to 1.4.2 of the jvm. These problems have only appeared when
    they started using 1.5.0. If I could reproduce it myself, then at least I could file
    a bug report with sun.

  • EXCEPTION ACCESS VIOLATION in jsoundds.dll on Windows XP (Home | Pro)

    We've been getting this error for a long time now and we have no idea how to fix it, debug it, or avoid it.
    Any help or ideas that anyone could give would be great.
    Thanks in advance
    # An unexpected error has been detected by HotSpot Virtual Machine:
    #  EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x6d4a2254, pid=3932, tid=3744
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_06-b05 mixed mode)
    # Problematic frame:
    # C  [jsoundds.dll+0x2254]
    ---------------  T H R E A D  ---------------
    Current thread (0x00857670):  JavaThread "Player Thread" [_thread_in_native, id=3744]
    siginfo: ExceptionCode=0xc0000005, reading address 0x00000000
    Registers:
    EAX=0x000000be, EBX=0x180efa54, ECX=0x00000dd4, EDX=0x00000000
    ESP=0x180efa34, EBP=0x180efa60, ESI=0x00910fc0, EDI=0x000000be
    EIP=0x6d4a2254, EFLAGS=0x00010206
    Top of Stack: (sp=0x180efa34)
    0x180efa34:   180efa5c 00000000 00914f70 00910fc0
    0x180efa44:   00857670 00000e92 00000000 00000000
    0x180efa54:   00000000 00000000 00000000 180efa7c
    0x180efa64:   6d4a2a77 00000f80 00000001 02c729c8
    0x180efa74:   00910fc0 00910fc0 180efaa8 6d4a1bae
    0x180efa84:   00910fc0 00000001 00f2cd0d 00857730
    0x180efa94:   180efaa4 00914f70 00000000 00000001
    0x180efaa4:   137429b0 180efb08 00f14a50 00000001
    Instructions: (pc=0x6d4a2254)
    0x6d4a2244:   00 00 00 ff 75 ec 8d 5d fc 8b 56 08 53 8d 5d f4
    0x6d4a2254:   8b 3a 53 8d 5d f8 53 8d 5d f0 53 50 51 52 ff 57
    Stack: [0x180b0000,0x180f0000),  sp=0x180efa34,  free space=254k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C  [jsoundds.dll+0x2254]
    C  [jsoundds.dll+0x2a77]
    C  [jsoundds.dll+0x1bae]
    J  com.sun.media.sound.DirectAudioDevice$DirectDL.drain()V
    J  net.interactions.util.IPlayer$PlayerThread.run()V
    v  ~OSRAdapter
    v  ~StubRoutines::call_stub
    V  [jvm.dll+0x845a9]
    V  [jvm.dll+0xd9317]
    V  [jvm.dll+0x8447a]
    V  [jvm.dll+0x841d7]
    V  [jvm.dll+0x9ed69]
    V  [jvm.dll+0x109fe3]
    V  [jvm.dll+0x109fb1]
    C  [MSVCRT.dll+0x2a3b0]
    C  [kernel32.dll+0xb683]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    J  com.sun.media.sound.DirectAudioDevice.nIsStillDraining(JZ)Z
    J  com.sun.media.sound.DirectAudioDevice$DirectDL.drain()V
    J  net.interactions.util.IPlayer$PlayerThread.run()V
    v  ~OSRAdapter
    v  ~StubRoutines::call_stub
    ---------------  P R O C E S S  ---------------
    Java Threads: ( => current thread )
      0x00915b00 JavaThread "starter thread" [_thread_in_native, id=2948]
      0x00910040 JavaThread "readerThread" [_thread_new, id=3892]
    =>0x00857670 JavaThread "Player Thread" [_thread_in_native, id=3744]
      0x00852480 JavaThread "Java Sound Event Dispatcher" daemon [_thread_blocked, id=3708]
      0x008556c0 JavaThread "earn break time thread" [_thread_blocked, id=2988]
      0x0084d4f0 JavaThread "iRouter socket reader" [_thread_in_vm, id=3472]
      0x008441e0 JavaThread "allower thread" [_thread_blocked, id=3988]
      0x0086dc40 JavaThread "Timer-0" [_thread_blocked, id=3148]
      0x0086ed30 JavaThread "Thread-40" daemon [_thread_blocked, id=2796]
      0x0087ea30 JavaThread "queued IMAppender messages sender" [_thread_blocked, id=3700]
      0x0087e050 JavaThread "Smack Listener Processor" daemon [_thread_blocked, id=3184]
      0x0087dad0 JavaThread "Smack Packet Reader" daemon [_thread_in_native, id=3072]
      0x0087d8f0 JavaThread "Smack Packet Writer" daemon [_thread_blocked, id=1168]
      0x008446d0 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=1648]
      0x0083fe30 JavaThread "DestroyJavaVM" [_thread_blocked, id=3316]
      0x0083eb40 JavaThread "javawsApplicationMain" [_thread_in_native, id=3436]
      0x0083ab60 JavaThread "traceMsgQueueThread" daemon [_thread_blocked, id=1700]
      0x008380a0 JavaThread "AWT-Windows" daemon [_thread_in_native, id=1060]
      0x008300d0 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=2216]
      0x0082f510 JavaThread "CompilerThread0" daemon [_thread_blocked, id=3728]
      0x0082e3f0 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=2860]
      0x0082d810 JavaThread "Finalizer" daemon [_thread_blocked, id=4072]
      0x0082c570 JavaThread "Reference Handler" daemon [_thread_blocked, id=3612]
    Other Threads:
      0x0082b840 VMThread [id=3960]
      0x00832be0 WatcherThread [id=1056]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation   total 9216K, used 4578K [0x02b70000, 0x03560000, 0x03f20000)
      eden space 8256K,  53% used [0x02b70000, 0x02fbea30, 0x03380000)
      from space 960K,  17% used [0x03380000, 0x033aa108, 0x03470000)
      to   space 960K,   0% used [0x03470000, 0x03470000, 0x03560000)
    tenured generation   total 121024K, used 19286K [0x03f20000, 0x0b550000, 0x12b70000)
       the space 121024K,  15% used [0x03f20000, 0x051f59f8, 0x051f5a00, 0x0b550000)
    compacting perm gen  total 12544K, used 12438K [0x12b70000, 0x137b0000, 0x16b70000)
       the space 12544K,  99% used [0x12b70000, 0x13795ae8, 0x13795c00, 0x137b0000)
    No shared spaces configured.
    Dynamic libraries:
    0x00400000 - 0x0040c000      C:\Program Files\Java\jre1.5.0_06\bin\javaw.exe
    0x7c900000 - 0x7c9b0000      C:\WINDOWS\system32\ntdll.dll
    0x7c800000 - 0x7c8f4000      C:\WINDOWS\system32\kernel32.dll
    0x77dd0000 - 0x77e6b000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77e70000 - 0x77f01000      C:\WINDOWS\system32\RPCRT4.dll
    0x77d40000 - 0x77dd0000      C:\WINDOWS\system32\USER32.dll
    0x77f10000 - 0x77f57000      C:\WINDOWS\system32\GDI32.dll
    0x77c10000 - 0x77c68000      C:\WINDOWS\system32\MSVCRT.dll
    0x6d670000 - 0x6d804000      C:\Program Files\Java\jre1.5.0_06\bin\client\jvm.dll
    0x76b40000 - 0x76b6d000      C:\WINDOWS\system32\WINMM.dll
    0x6d280000 - 0x6d288000      C:\Program Files\Java\jre1.5.0_06\bin\hpi.dll
    0x76bf0000 - 0x76bfb000      C:\WINDOWS\system32\PSAPI.DLL
    0x6d640000 - 0x6d64c000      C:\Program Files\Java\jre1.5.0_06\bin\verify.dll
    0x6d300000 - 0x6d31d000      C:\Program Files\Java\jre1.5.0_06\bin\java.dll
    0x6d660000 - 0x6d66f000      C:\Program Files\Java\jre1.5.0_06\bin\zip.dll
    0x6d000000 - 0x6d167000      C:\Program Files\Java\jre1.5.0_06\bin\awt.dll
    0x73000000 - 0x73026000      C:\WINDOWS\system32\WINSPOOL.DRV
    0x76390000 - 0x763ad000      C:\WINDOWS\system32\IMM32.dll
    0x774e0000 - 0x7761d000      C:\WINDOWS\system32\ole32.dll
    0x5ad70000 - 0x5ada8000      C:\WINDOWS\system32\uxtheme.dll
    0x73760000 - 0x737a9000      C:\WINDOWS\system32\ddraw.dll
    0x73bc0000 - 0x73bc6000      C:\WINDOWS\system32\DCIMAN32.dll
    0x73940000 - 0x73a10000      C:\WINDOWS\system32\D3DIM700.DLL
    0x170d0000 - 0x170f4000      C:\PROGRA~1\McAfee\SPAMKI~1\mskoeplg.dll
    0x77c00000 - 0x77c08000      C:\WINDOWS\system32\VERSION.dll
    0x5d090000 - 0x5d12a000      C:\WINDOWS\system32\COMCTL32.dll
    0x77120000 - 0x771ac000      C:\WINDOWS\system32\OLEAUT32.dll
    0x6d1f0000 - 0x6d203000      C:\Program Files\Java\jre1.5.0_06\bin\deploy.dll
    0x771b0000 - 0x77259000      C:\WINDOWS\system32\WININET.dll
    0x77a80000 - 0x77b14000      C:\WINDOWS\system32\CRYPT32.dll
    0x77b20000 - 0x77b32000      C:\WINDOWS\system32\MSASN1.dll
    0x77f60000 - 0x77fd6000      C:\WINDOWS\system32\SHLWAPI.dll
    0x7e1e0000 - 0x7e282000      C:\WINDOWS\system32\urlmon.dll
    0x7c9c0000 - 0x7d1d5000      C:\WINDOWS\system32\SHELL32.dll
    0x773d0000 - 0x774d3000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2982_x-ww_ac3f9c03\comctl32.dll
    0x6d5d0000 - 0x6d5ef000      C:\Program Files\Java\jre1.5.0_06\bin\RegUtils.dll
    0x745e0000 - 0x748a6000      C:\WINDOWS\system32\msi.dll
    0x77fe0000 - 0x77ff1000      C:\WINDOWS\system32\Secur32.dll
    0x76ee0000 - 0x76f1c000      C:\WINDOWS\system32\RASAPI32.DLL
    0x76e90000 - 0x76ea2000      C:\WINDOWS\system32\rasman.dll
    0x71ab0000 - 0x71ac7000      C:\WINDOWS\system32\WS2_32.dll
    0x71aa0000 - 0x71aa8000      C:\WINDOWS\system32\WS2HELP.dll
    0x5b860000 - 0x5b8b4000      C:\WINDOWS\system32\NETAPI32.dll
    0x76eb0000 - 0x76edf000      C:\WINDOWS\system32\TAPI32.dll
    0x76e80000 - 0x76e8e000      C:\WINDOWS\system32\rtutils.dll
    0x77c70000 - 0x77c93000      C:\WINDOWS\system32\msv1_0.dll
    0x76d60000 - 0x76d79000      C:\WINDOWS\system32\iphlpapi.dll
    0x722b0000 - 0x722b5000      C:\WINDOWS\system32\sensapi.dll
    0x769c0000 - 0x76a73000      C:\WINDOWS\system32\USERENV.dll
    0x6d3c0000 - 0x6d3df000      C:\Program Files\Java\jre1.5.0_06\bin\jpeg.dll
    0x6d240000 - 0x6d27d000      C:\Program Files\Java\jre1.5.0_06\bin\fontmanager.dll
    0x6d4c0000 - 0x6d4d3000      C:\Program Files\Java\jre1.5.0_06\bin\net.dll
    0x71a50000 - 0x71a8f000      C:\WINDOWS\System32\mswsock.dll
    0x76f20000 - 0x76f47000      C:\WINDOWS\system32\DNSAPI.dll
    0x76fb0000 - 0x76fb8000      C:\WINDOWS\System32\winrnr.dll
    0x76f60000 - 0x76f8c000      C:\WINDOWS\system32\WLDAP32.dll
    0x76fc0000 - 0x76fc6000      C:\WINDOWS\system32\rasadhlp.dll
    0x662b0000 - 0x66308000      C:\WINDOWS\system32\hnetcfg.dll
    0x71a90000 - 0x71a98000      C:\WINDOWS\System32\wshtcpip.dll
    0x71ad0000 - 0x71ad9000      C:\WINDOWS\system32\wsock32.dll
    0x17aa0000 - 0x17aee000      C:\Documents and Settings\iAnalyst\Application Data\Sun\Java\Deployment\cache\javaws\http\Dinternal.interactions.net\P8080\DMiAgent\RNswt-lib.jar\swt-win32-3062.dll
    0x763b0000 - 0x763f9000      C:\WINDOWS\system32\comdlg32.dll
    0x74d90000 - 0x74dfb000      C:\WINDOWS\system32\USP10.dll
    0x74c80000 - 0x74cac000      C:\WINDOWS\system32\oleacc.dll
    0x76080000 - 0x760e5000      C:\WINDOWS\system32\MSVCP60.dll
    0x17420000 - 0x17439000      c:\progra~1\mcafee.com\vso\McVSSkt.dll
    0x6d4e0000 - 0x6d4e9000      C:\Program Files\Java\jre1.5.0_06\bin\nio.dll
    0x17d40000 - 0x17d68000      C:\WINDOWS\system32\rsaenh.dll
    0x6d470000 - 0x6d495000      C:\Program Files\Java\jre1.5.0_06\bin\jsound.dll
    0x6d4a0000 - 0x6d4a7000      C:\Program Files\Java\jre1.5.0_06\bin\jsoundds.dll
    0x73f10000 - 0x73f6c000      C:\WINDOWS\system32\DSOUND.dll
    0x76c30000 - 0x76c5e000      C:\WINDOWS\system32\WINTRUST.dll
    0x76c90000 - 0x76cb8000      C:\WINDOWS\system32\IMAGEHLP.dll
    0x72d20000 - 0x72d29000      C:\WINDOWS\system32\wdmaud.drv
    0x72d10000 - 0x72d18000      C:\WINDOWS\system32\msacm32.drv
    0x77be0000 - 0x77bf5000      C:\WINDOWS\system32\MSACM32.dll
    0x77bd0000 - 0x77bd7000      C:\WINDOWS\system32\midimap.dll
    0x73ee0000 - 0x73ee4000      C:\WINDOWS\system32\KsUser.dll
    VM Arguments:
    jvm_args: -Xms128M -Xmx256M -Xbootclasspath/a:C:\Program Files\Java\jre1.5.0_06\lib\javaws.jar;C:\Program Files\Java\jre1.5.0_06\lib\deploy.jar -Djnlpx.home=C:\Program Files\Java\jre1.5.0_06\bin -Djnlpx.splashport=4678 -Djnlpx.jvm="C:\Program Files\Java\jre1.5.0_06\bin\javaw.exe" -Djnlpx.remove=true -Djava.security.policy=file:C:\Program Files\Java\jre1.5.0_06\lib\security\javaws.policy -DtrustProxy=true -Xverify:remote -Djnlpx.heapsize=128M,256M
    java_command: com.sun.javaws.Main C:\DOCUME~1\iAnalyst\LOCALS~1\Temp\javaws2
    Launcher Type: SUN_STANDARD
    Environment Variables:
    PATH=C:\Program Files\Java\jre1.5.0_06\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Common Files\Roxio Shared\DLLShared\;"C:\Program Files\Java\jre1.5.0_06\bin"
    USERNAME=iAnalyst
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 15 Model 4 Stepping 9, GenuineIntel
    ---------------  S Y S T E M  ---------------
    OS: Windows XP Build 2600 Service Pack 2
    CPU:total 2 family 15, cmov, cx8, fxsr, mmx, sse, sse2, ht
    Memory: 4k page, physical 1038412k(538272k free), swap 2499772k(2040932k free)
    vm_info: Java HotSpot(TM) Client VM (1.5.0_06-b05) for windows-x86, built on Nov 10 2005 11:12:14 by "java_re" with MS VC++ 6.0

    Lets see. I wrote the application. It's an application that receives audio data over a socket connection to a server. This happens seemingly randomly, no real pattern has yet emerged. Or at least none we've been able to discern from our testing and our user testing. The application rapidly plays audio chunks sent to it from the socket, so it's using the audio device heavily. It also runs for many days at a time without restarting. Normally used during regular business hours constantly (approx. 14 hours / day, 84 hours / week). We've had this problem for quite some time and it has persisted over various JVM upgrades.
    Thanks for the help

  • Cannot access file from JApplet

    I have used the swingall.jar file with my JApplet for any
    version of IE. It gives one error
    i.e
    Cannot access file c:\prog\project
    I want to create a directory within c:\prog and also i want
    to write some files there. Pls help me.

    try this my friend!
    1.     Compile the applet
    2.     Create a JAR file
    3.     Generate Keys
    4.     Sign the JAR file
    5.     Export the Public Key Certificate
    6.     Import the Certificate as a Trusted Certificate
    7.     Create the policy file
    8.     Run the applet
    Susan
    Susan bundles the applet executable in a JAR file, signs the JAR file, and exports the public key certificate.
    1.     Compile the Applet
    In her working directory, Susan uses the javac command to compile the SignedAppletDemo.java class. The output from the javac command is the SignedAppletDemo.class.
    javac SignedAppletDemo.java
    2.     Make a JAR File
    Susan then makes the compiled SignedAppletDemo.class file into a JAR file. The -cvf option to the jar command creates a new archive (c), using verbose mode (v), and specifies the archive file name (f). The archive file name is SignedApplet.jar.
    jar cvf SignedApplet.jar SignedAppletDemo.class
    3.     Generate Keys
    Susan creates a keystore database named susanstore that has an entry for a newly generated public and private key pair with the public key in a certificate. A JAR file is signed with the private key of the creator of the JAR file and the signature is verified by the recipient of the JAR file with the public key in the pair. The certificate is a statement from the owner of the private key that the public key in the pair has a particular value so the person using the public key can be assured the public key is authentic. Public and private keys must already exist in the keystore database before jarsigner can be used to sign or verify the signature on a JAR file.
    In her working directory, Susan creates a keystore database and generates the keys:
    keytool -genkey -alias signFiles -keystore susanstore -keypass kpi135 -dname "cn=jones" -storepass ab987c
    This keytool -genkey command invocation generates a key pair that is identified by the alias signFiles. Subsequent keytool command invocations use this alias and the key password (-keypass kpi135) to access the private key in the generated pair.
    The generated key pair is stored in a keystore database called susanstore (-keystore susanstore) in the current directory, and accessed with the susanstore password (-storepass ab987c).
    The -dname "cn=jones" option specifies an X.500 Distinguished Name with a commonName (cn) value. X.500 Distinguished Names identify entities for X.509 certificates.
    You can view all keytool options and parameters by typing:
    keytool -help
    4.     Sign the JAR File
    JAR Signer is a command line tool for signing and verifying the signature on JAR files. In her working directory, Susan uses jarsigner to make a signed copy of the SignedApplet.jar file.
    jarsigner -keystore susanstore -storepass ab987c -keypass kpi135 -signedjar SSignedApplet.jar SignedApplet.jar signFiles
    The -storepass ab987c and -keystore susanstore options specify the keystore database and password where the private key for signing the JAR file is stored. The -keypass kpi135 option is the password to the private key, SSignedApplet.jar is the name of the signed JAR file, and signFiles is the alias to the private key. jarsigner extracts the certificate from the keystore whose entry is signFiles and attaches it to the generated signature of the signed JAR file.
    5.     Export the Public Key Certificate
    The public key certificate is sent with the JAR file to the whoever is going to use the applet. That person uses the certificate to authenticate the signature on the JAR file. To send a certificate, you have to first export it.
    The -storepass ab987c and -keystore susanstore options specify the keystore database and password where the private key for signing the JAR file is stored. The -keypass kpi135 option is the password to the private key, SSignedApplet.jar is the name of the signed JAR file, and signFiles is the alias to the private key. jarsigner extracts the certificate from the keystore whose entry is signFiles and attaches it to the generated signature of the signed JAR file.
    5: Export the Public Key Certificate
    The public key certificate is sent with the JAR file to the whoever is going to use the applet. That person uses the certificate to authenticate the signature on the JAR file. To send a certificate, you have to first export it.
    In her working directory, Susan uses keytool to copy the certificate from susanstore to a file named SusanJones.cer as follows:
    keytool -export -keystore susanstore -storepass ab987c -alias signFiles -file SusanJones.cer
    Ray
    Ray receives the JAR file from Susan, imports the certificate, creates a policy file granting the applet access, and runs the applet.
    6.     Import Certificate as a Trusted Certificate
    Ray has received SSignedApplet.jar and SusanJones.cer from Susan. He puts them in his home directory. Ray must now create a keystore database (raystore) and import the certificate into it. Ray uses keytool in his home directory /home/ray to import the certificate:
    keytool -import -alias susan -file SusanJones.cer -keystore raystore -storepass abcdefgh
    7.     Create the Policy File
    The policy file grants the SSignedApplet.jar file signed by the alias susan permission to create newfile (and no other file) in the user's home directory.
    Ray creates the policy file in his home directory using either policytool or an ASCII editor.
    keystore "/home/ray/raystore";
    // A sample policy file that lets a JavaTM program
    // create newfile in user's home directory
    // Satya N Dodda
    grant SignedBy "susan"
         permission java.security.AllPermission;
    8.     Run the Applet in Applet Viewer
    Applet Viewer connects to the HTML documents and resources specified in the call to appletviewer, and displays the applet in its own window. To run the example, Ray copies the signed JAR file and HTML file to /home/aURL/public_html and invokes Applet viewer from his home directory as follows:
    Html code :
    </body>
    </html>
    <OBJECT classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"
    width="600" height="400" align="middle"
    codebase="http://java.sun.com/products/plugin/1.3/jinstall-13-win32.cab#Version=1,3,1,2">
    <PARAM NAME="code" VALUE="SignedAppletDemo.class">
    <PARAM NAME="archive" VALUE="SSignedApplet.jar">
    <PARAM NAME="type" VALUE="application/x-java-applet;version=1.3">
    </OBJECT>
    </body>
    </html>
    appletviewer -J-Djava.security.policy=Write.jp
    http://aURL.com/SignedApplet.html
    Note: Type everything on one line and put a space after Write.jp
    The -J-Djava.security.policy=Write.jp option tells Applet Viewer to run the applet referenced in the SignedApplet.html file with the Write.jp policy file.
    Note: The Policy file can be stored on a server and specified in the appletviewer invocation as a URL.
    9.     Run the Applet in Browser
    Download JRE 1.3 from Javasoft
    save this to write.jp
    keystore "/home/ray/raystore";
    // A sample policy file that lets a JavaTM program
    // create newfile in user's home directory
    // Satya N Dodda
    grant {
    permission java.security.AllPermission;
    save this to signedAppletDemo.java
    * File: @(#)SignedAppletDemo.java     1.1
    * Comment:     Signed Applet Demo
    * @(#)author: Satya Dodda
    * @(#)version: 1.1
    * @(#)date: 98/10/01
    import java.applet.Applet;
    import java.awt.Graphics;
    import java.io.*;
    import java.awt.Color;
    * A simple Signed Applet Demo
    public class SignedAppletDemo extends Applet {
    public String test() {
    setBackground(Color.white);
         System.out.println(System.getProperty("user.home"));
         String fileName = System.getProperty("user.home") +
                        System.getProperty("file.separator") +
                        "newfile";
         String msg = "This message was written by a signed applet!!!\n";
         String s ;
         try {
         FileWriter fos = new FileWriter(fileName);
         fos.write(msg, 0, msg.length());
         fos.close();
         s = new String("Successfully created file :" + fileName);
         } catch (Exception e) {
         System.out.println("Exception e = " + e);
         e.printStackTrace();
         s = new String("Unable to create file : " + fileName);
         return s;
    public void paint(Graphics g) {
    g.setColor(Color.blue);
    g.drawString("Signed Applet Demo", 120, 50);
    g.setColor(Color.magenta);
    g.drawString(test(), 50, 100);

  • Memory problem with jdk/jre 1.1.8

    My name is BERGMANN Yannick.
    I'm working for IRM in Li?ge and we developped an application (user interface for an industrial measurement system) in Java (JDK/JRE version : 1.1.8).
    We have a big memory problem with this application :
    - This user interface is running on a WINDOWS NT PC with 128MB.
    - This is the command to lanch our application :
    C:\Program Files\JavaSoft\JRE\1.1\bin\jrew.exe" -ms32m -mx32m -cp "\Program Files\HMI\HMI.zip;\Velocis\Add_On\Jdbc\raima.jar;\Program Files\Swing-1.1.1\swingall.jar" be.irm.hmi.kernel.HMI -t15 -d"Velocis rdstcp" -newdb -mf1m -mr20
    - When our application is running, everything seems to be OK in memory for it. The garbage collector seems to work properly and our application has always at least 5MB free memory (We use the java instruction "Runtime.getRuntime().freeMemory()" to know this).
    - But when we look in the "Windows NT task manager" for the "jrew" application, the memory increases ALWAYS.
    - After 5 days our application is completely frozen and blocked ...???
    - here is a memory map of our Windows NT PC :
         "jre.exe"     "commit total"     "commit limit"     "commit peak"     "physical total"     "physical available"     "physical file cache"     
    Monday     92264     109256     194944     109424     130484     19492     6216     
    Thuesday     106196     123072     194944     123348     130484     6072     5840     
    Wednesday     110836     132288     194944     132416     130484     4408     5140     
    Thursday     108200     144980     194944     145140     130484     4888     5148     
    Friday     109440     158319     194944     161334     130484     4911     4992     
    Monday     111600     209060     228548     209148     130484     5184     3484     
    Have you any idea of what is happening with "jrew" in memory ?
    We have had this problem for six month and we are totaly out of idea.
    If you can give us any idea, we'll appreciate a lot.
    Thanks in advance,
    BERGMANN Yannick
    IRM SA - Software Engineer
    Tel. (32)4/239.90.10
    Tel. (32)4/239.90.74 (direct)
    Fax (32)4/263.40.97
    E-mail [email protected]

    We had a memory problem with a swing applet in our company. The major reason for this was that we added new components in a JTree and removed them later again, and the components we removed were never garbage collected. This was because with these components we added different listeners, and we didn't remove the listeners after we didn't need the components anymore. After we corrected this, the components where garbage collected.
    Perhaps it's a similar problem you have, or I have no idea. Check that you remove actionlisteners, mouselisteners etc from components you want to be garbage collected.
    You could also test your application with OptimizeIt to see what objects you create and how many you get of them over time: http://www.vmgear.com

  • EXCEPTION_ACCESS_VIOLATION in Web Start

    Hi,
    I am using JDK 1.5. And there is an EXCEPTION_ACCESS_VIOLATION when I tried to launch a program via Web Start.
    The program just crash after I press some items.
    Do you have any idea ?
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x6d267ada, pid=3980, tid=576
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_06-b05 mixed mode)
    # Problematic frame:
    # C [fontmanager.dll+0x27ada]
    --------------- T H R E A D ---------------
    Current thread (0x0086e8a0): JavaThread "AWT-EventQueue-0" [_thread_in_native, id=576]
    siginfo: ExceptionCode=0xc0000005, reading address 0x52f2db8e
    Registers:
    EAX=0x00017769, EBX=0x52efecb0, ECX=0x52efecbc, EDX=0x00008000
    ESP=0x4a38ec38, EBP=0x4a38ec44, ESI=0x00007d23, EDI=0x00000000
    EIP=0x6d267ada, EFLAGS=0x00010202
    Top of Stack: (sp=0x4a38ec38)
    0x4a38ec38: 4a38ee9c 52efecba 52efecb0 4a38ec78
    0x4a38ec48: 6d2680d2 6c61746e 52efecbc 00008000
    0x4a38ec58: 00000019 6d266076 6c61746e 6d269bad
    0x4a38ec68: 6c61746e 0086e960 43fb9b78 43fb9b78
    0x4a38ec78: 4a38eefc 6d26a14f 6c61746e 00000019
    0x4a38ec88: ffffffff 4a38ef14 0086e8a0 43fb9b78
    0x4a38ec98: 43fb9b78 00000000 0086e8a0 0084ab60
    0x4a38eca8: 42bea9a0 00000000 4a38ef0c 00000000
    Instructions: (pc=0x6d267ada)
    0x6d267aca: 8b c8 5a d3 e2 8b 4d 0c 2b f2 89 55 10 8d 04 76
    0x6d267ada: 0f b6 1c 41 8d 04 41 c1 e3 08 0f b6 48 01 03 cb
    Stack: [0x4a350000,0x4a390000), sp=0x4a38ec38, free space=251k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C [fontmanager.dll+0x27ada]
    C [fontmanager.dll+0x280d2]
    C [fontmanager.dll+0x2a14f]
    j sun.font.SunLayoutEngine.nativeLayout(Lsun/font/Font2D;Lsun/font/FontStrike;[FII[CIIIIIIZLjava/awt/geom/Point2D$Float;Lsun/font/GlyphLayout$GVData;)V+0
    j sun.font.SunLayoutEngine.layout(Lsun/font/FontStrikeDesc;[FIILsun/font/TextRecord;ZLjava/awt/geom/Point2D$Float;Lsun/font/GlyphLayout$GVData;)V+70
    j sun.font.GlyphLayout$EngineRecord.layout()V+90
    j sun.font.GlyphLayout.layout(Ljava/awt/Font;Ljava/awt/font/FontRenderContext;[CIIILsun/font/StandardGlyphVector;)Lsun/font/StandardGlyphVector;+480
    j sun.font.ExtendedTextSourceLabel.createGV()Lsun/font/StandardGlyphVector;+70
    j sun.font.ExtendedTextSourceLabel.getGV()Lsun/font/StandardGlyphVector;+9
    j sun.font.ExtendedTextSourceLabel.createCharinfo()[F+1
    j sun.font.ExtendedTextSourceLabel.getCharinfo()[F+9
    j sun.font.ExtendedTextSourceLabel.getLineBreakIndex(IF)I+1
    j java.awt.font.TextMeasurer.calcLineBreak(IF)I+96
    j java.awt.font.TextMeasurer.getLineBreakIndex(IF)I+38
    j java.awt.font.LineBreakMeasurer.nextOffset(FIZ)I+44
    j java.awt.font.LineBreakMeasurer.nextLayout(FIZ)Ljava/awt/font/TextLayout;+15
    j java.awt.font.LineBreakMeasurer.nextLayout(F)Ljava/awt/font/TextLayout;+7
    j com.symantec.sef.management.ui.NavigatorPanel.formatTip(Ljava/lang/String;)Ljava/lang/String;+61
    j com.symantec.sef.management.ui.NavigatorPanel.getSectionDefinition(Lorg/w3c/dom/Element;)Lcom/symantec/sef/management/ui/NavigatorPanel$SectionDefinition;+294
    j com.symantec.sef.management.ui.NavigatorPanel.getSections(Lorg/w3c/dom/Node;)[Lcom/symantec/sef/management/ui/NavigatorPanel$SectionDefinition;+219
    j com.symantec.sef.management.ui.NavigatorPanel.walkXmlTree(Lorg/w3c/dom/Node;)V+24
    j com.symantec.sef.management.ui.NavigatorPanel.<init>(Lcom/symantec/sef/management/ui/NavigatorPanel$ContentProvider;Lcom/symantec/sef/management/ui/PrivilegeChecker;)V+79
    j com.symantec.sef.management.ui.AbstractConfigurationCBA.getUI()Ljavax/swing/JPanel;+88
    j com.symantec.sef.management.ui.UI.setUI(Lcom/symantec/ssmc/commoncontrols/IContentBuilder;)Z+136
    j com.symantec.ssmc.commoncontrols.CBANavigationTreeCtrl.treeElementClicked(Ljavax/swing/tree/DefaultMutableTreeNode;Z)V+55
    j com.symantec.ssmc.commoncontrols.CBANavigationTreeCtrl.valueChanged(Ljavax/swing/event/TreeSelectionEvent;)V+24
    j javax.swing.JTree.fireValueChanged(Ljavax/swing/event/TreeSelectionEvent;)V+35
    j javax.swing.JTree$TreeSelectionRedirector.valueChanged(Ljavax/swing/event/TreeSelectionEvent;)V+17
    j javax.swing.tree.DefaultTreeSelectionModel.fireValueChanged(Ljavax/swing/event/TreeSelectionEvent;)V+35
    j javax.swing.tree.DefaultTreeSelectionModel.notifyPathChange(Ljava/util/Vector;Ljavax/swing/tree/TreePath;)V+84
    j javax.swing.tree.DefaultTreeSelectionModel.setSelectionPaths([Ljavax/swing/tree/TreePath;)V+454
    j javax.swing.tree.DefaultTreeSelectionModel.setSelectionPath(Ljavax/swing/tree/TreePath;)V+23
    j javax.swing.JTree.setSelectionPath(Ljavax/swing/tree/TreePath;)V+5
    j javax.swing.plaf.basic.BasicTreeUI.selectPathForEvent(Ljavax/swing/tree/TreePath;Ljava/awt/event/MouseEvent;)V+266
    j javax.swing.plaf.basic.BasicTreeUI$Handler.handleSelectionImpl(Ljava/awt/event/MouseEvent;Ljavax/swing/tree/TreePath;)V+126
    j javax.swing.plaf.basic.BasicTreeUI$Handler.handleSelection(Ljava/awt/event/MouseEvent;)V+107
    j javax.swing.plaf.basic.BasicTreeUI$Handler.mousePressed(Ljava/awt/event/MouseEvent;)V+9
    j java.awt.AWTEventMulticaster.mousePressed(Ljava/awt/event/MouseEvent;)V+21
    j java.awt.AWTEventMulticaster.mousePressed(Ljava/awt/event/MouseEvent;)V+8
    j java.awt.AWTEventMulticaster.mousePressed(Ljava/awt/event/MouseEvent;)V+8
    j java.awt.AWTEventMulticaster.mousePressed(Ljava/awt/event/MouseEvent;)V+8
    j java.awt.AWTEventMulticaster.mousePressed(Ljava/awt/event/MouseEvent;)V+8
    j java.awt.Component.processMouseEvent(Ljava/awt/event/MouseEvent;)V+54
    j javax.swing.JComponent.processMouseEvent(Ljava/awt/event/MouseEvent;)V+23
    j java.awt.Component.processEvent(Ljava/awt/AWTEvent;)V+81
    j java.awt.Container.processEvent(Ljava/awt/AWTEvent;)V+18
    j java.awt.Component.dispatchEventImpl(Ljava/awt/AWTEvent;)V+477
    J java.awt.Container.dispatchEventImpl(Ljava/awt/AWTEvent;)V
    J java.awt.LightweightDispatcher.retargetMouseEvent(Ljava/awt/Component;ILjava/awt/event/MouseEvent;)V
    j java.awt.LightweightDispatcher.processMouseEvent(Ljava/awt/event/MouseEvent;)Z+126
    j java.awt.LightweightDispatcher.dispatchEvent(Ljava/awt/AWTEvent;)Z+50
    J java.awt.Container.dispatchEventImpl(Ljava/awt/AWTEvent;)V
    v ~RuntimeStub::alignment_frame_return Runtime1 stub
    j java.awt.Window.dispatchEventImpl(Ljava/awt/AWTEvent;)V+19
    J java.awt.EventQueue.dispatchEvent(Ljava/awt/AWTEvent;)V
    J java.awt.EventDispatchThread.pumpOneEventForHierarchy(ILjava/awt/Component;)Z
    v ~RuntimeStub::alignment_frame_return Runtime1 stub
    j java.awt.EventDispatchThread.pumpEventsForHierarchy(ILjava/awt/Conditional;Ljava/awt/Component;)V+26
    j java.awt.EventDispatchThread.pumpEvents(ILjava/awt/Conditional;)V+4
    j java.awt.EventDispatchThread.pumpEvents(Ljava/awt/Conditional;)V+3
    j java.awt.EventDispatchThread.run()V+9
    v ~StubRoutines::call_stub
    V [jvm.dll+0x845a9]
    V [jvm.dll+0xd9317]
    V [jvm.dll+0x8447a]
    V [jvm.dll+0x841d7]
    V [jvm.dll+0x9ed69]
    V [jvm.dll+0x109fe3]
    V [jvm.dll+0x109fb1]
    C [MSVCRT.dll+0x2a3b0]
    C [kernel32.dll+0xb50b]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j sun.font.SunLayoutEngine.nativeLayout(Lsun/font/Font2D;Lsun/font/FontStrike;[FII[CIIIIIIZLjava/awt/geom/Point2D$Float;Lsun/font/GlyphLayout$GVData;)V+0
    j sun.font.SunLayoutEngine.layout(Lsun/font/FontStrikeDesc;[FIILsun/font/TextRecord;ZLjava/awt/geom/Point2D$Float;Lsun/font/GlyphLayout$GVData;)V+70
    j sun.font.GlyphLayout$EngineRecord.layout()V+90
    j sun.font.GlyphLayout.layout(Ljava/awt/Font;Ljava/awt/font/FontRenderContext;[CIIILsun/font/StandardGlyphVector;)Lsun/font/StandardGlyphVector;+480
    j sun.font.ExtendedTextSourceLabel.createGV()Lsun/font/StandardGlyphVector;+70
    j sun.font.ExtendedTextSourceLabel.getGV()Lsun/font/StandardGlyphVector;+9
    j sun.font.ExtendedTextSourceLabel.createCharinfo()[F+1
    j sun.font.ExtendedTextSourceLabel.getCharinfo()[F+9
    j sun.font.ExtendedTextSourceLabel.getLineBreakIndex(IF)I+1
    j java.awt.font.TextMeasurer.calcLineBreak(IF)I+96
    j java.awt.font.TextMeasurer.getLineBreakIndex(IF)I+38
    j java.awt.font.LineBreakMeasurer.nextOffset(FIZ)I+44
    j java.awt.font.LineBreakMeasurer.nextLayout(FIZ)Ljava/awt/font/TextLayout;+15
    j java.awt.font.LineBreakMeasurer.nextLayout(F)Ljava/awt/font/TextLayout;+7
    j com.symantec.sef.management.ui.NavigatorPanel.formatTip(Ljava/lang/String;)Ljava/lang/String;+61
    j com.symantec.sef.management.ui.NavigatorPanel.getSectionDefinition(Lorg/w3c/dom/Element;)Lcom/symantec/sef/management/ui/NavigatorPanel$SectionDefinition;+294
    j com.symantec.sef.management.ui.NavigatorPanel.getSections(Lorg/w3c/dom/Node;)[Lcom/symantec/sef/management/ui/NavigatorPanel$SectionDefinition;+219
    j com.symantec.sef.management.ui.NavigatorPanel.walkXmlTree(Lorg/w3c/dom/Node;)V+24
    j com.symantec.sef.management.ui.NavigatorPanel.<init>(Lcom/symantec/sef/management/ui/NavigatorPanel$ContentProvider;Lcom/symantec/sef/management/ui/PrivilegeChecker;)V+79
    j com.symantec.sef.management.ui.AbstractConfigurationCBA.getUI()Ljavax/swing/JPanel;+88
    j com.symantec.sef.management.ui.UI.setUI(Lcom/symantec/ssmc/commoncontrols/IContentBuilder;)Z+136
    j com.symantec.ssmc.commoncontrols.CBANavigationTreeCtrl.treeElementClicked(Ljavax/swing/tree/DefaultMutableTreeNode;Z)V+55
    j com.symantec.ssmc.commoncontrols.CBANavigationTreeCtrl.valueChanged(Ljavax/swing/event/TreeSelectionEvent;)V+24
    j javax.swing.JTree.fireValueChanged(Ljavax/swing/event/TreeSelectionEvent;)V+35
    j javax.swing.JTree$TreeSelectionRedirector.valueChanged(Ljavax/swing/event/TreeSelectionEvent;)V+17
    j javax.swing.tree.DefaultTreeSelectionModel.fireValueChanged(Ljavax/swing/event/TreeSelectionEvent;)V+35
    j javax.swing.tree.DefaultTreeSelectionModel.notifyPathChange(Ljava/util/Vector;Ljavax/swing/tree/TreePath;)V+84
    j javax.swing.tree.DefaultTreeSelectionModel.setSelectionPaths([Ljavax/swing/tree/TreePath;)V+454
    j javax.swing.tree.DefaultTreeSelectionModel.setSelectionPath(Ljavax/swing/tree/TreePath;)V+23
    j javax.swing.JTree.setSelectionPath(Ljavax/swing/tree/TreePath;)V+5
    j javax.swing.plaf.basic.BasicTreeUI.selectPathForEvent(Ljavax/swing/tree/TreePath;Ljava/awt/event/MouseEvent;)V+266
    j javax.swing.plaf.basic.BasicTreeUI$Handler.handleSelectionImpl(Ljava/awt/event/MouseEvent;Ljavax/swing/tree/TreePath;)V+126
    j javax.swing.plaf.basic.BasicTreeUI$Handler.handleSelection(Ljava/awt/event/MouseEvent;)V+107
    j javax.swing.plaf.basic.BasicTreeUI$Handler.mousePressed(Ljava/awt/event/MouseEvent;)V+9
    j java.awt.AWTEventMulticaster.mousePressed(Ljava/awt/event/MouseEvent;)V+21
    j java.awt.AWTEventMulticaster.mousePressed(Ljava/awt/event/MouseEvent;)V+8
    j java.awt.AWTEventMulticaster.mousePressed(Ljava/awt/event/MouseEvent;)V+8
    j java.awt.AWTEventMulticaster.mousePressed(Ljava/awt/event/MouseEvent;)V+8
    j java.awt.AWTEventMulticaster.mousePressed(Ljava/awt/event/MouseEvent;)V+8
    j java.awt.Component.processMouseEvent(Ljava/awt/event/MouseEvent;)V+54
    j javax.swing.JComponent.processMouseEvent(Ljava/awt/event/MouseEvent;)V+23
    j java.awt.Component.processEvent(Ljava/awt/AWTEvent;)V+81
    j java.awt.Container.processEvent(Ljava/awt/AWTEvent;)V+18
    j java.awt.Component.dispatchEventImpl(Ljava/awt/AWTEvent;)V+477
    J java.awt.Container.dispatchEventImpl(Ljava/awt/AWTEvent;)V
    J java.awt.LightweightDispatcher.retargetMouseEvent(Ljava/awt/Component;ILjava/awt/event/MouseEvent;)V
    j java.awt.LightweightDispatcher.processMouseEvent(Ljava/awt/event/MouseEvent;)Z+126
    j java.awt.LightweightDispatcher.dispatchEvent(Ljava/awt/AWTEvent;)Z+50
    J java.awt.Container.dispatchEventImpl(Ljava/awt/AWTEvent;)V
    v ~RuntimeStub::alignment_frame_return Runtime1 stub
    j java.awt.Window.dispatchEventImpl(Ljava/awt/AWTEvent;)V+19
    J java.awt.EventQueue.dispatchEvent(Ljava/awt/AWTEvent;)V
    J java.awt.EventDispatchThread.pumpOneEventForHierarchy(ILjava/awt/Component;)Z
    v ~RuntimeStub::alignment_frame_return Runtime1 stub
    j java.awt.EventDispatchThread.pumpEventsForHierarchy(ILjava/awt/Conditional;Ljava/awt/Component;)V+26
    j java.awt.EventDispatchThread.pumpEvents(ILjava/awt/Conditional;)V+4
    j java.awt.EventDispatchThread.pumpEvents(Ljava/awt/Conditional;)V+3
    j java.awt.EventDispatchThread.run()V+9
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x52efae70 JavaThread "Image Fetcher 0" daemon [_thread_blocked, id=216]
    0x008a2170 JavaThread "Image Animator 2" daemon [_thread_blocked, id=2296]
    0x008f5300 JavaThread "StatusThread" [_thread_blocked, id=1740]
    0x008f5490 JavaThread "Thread-56" [_thread_in_vm, id=640]
    0x008e65a0 JavaThread "Timer-0" [_thread_blocked, id=2584]
    =>0x0086e8a0 JavaThread "AWT-EventQueue-0" [_thread_in_native, id=576]
    0x0086edd0 JavaThread "AWT-Shutdown" [_thread_blocked, id=3672]
    0x00824e70 JavaThread "DestroyJavaVM" [_thread_blocked, id=672]
    0x00853bd0 JavaThread "TimerQueue" daemon [_thread_blocked, id=2356]
    0x0084b500 JavaThread "ConsoleWriterThread" daemon [_thread_blocked, id=2628]
    0x00842760 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=2308]
    0x0083de70 JavaThread "traceMsgQueueThread" daemon [_thread_blocked, id=3460]
    0x0083bd30 JavaThread "AWT-Windows" daemon [_thread_in_native, id=2536]
    0x008311d0 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=2800]
    0x008305e0 JavaThread "CompilerThread0" daemon [_thread_blocked, id=2220]
    0x0082f690 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=2400]
    0x0082ebe0 JavaThread "Finalizer" daemon [_thread_blocked, id=2264]
    0x0082d8f0 JavaThread "Reference Handler" daemon [_thread_blocked, id=2052]
    Other Threads:
    0x0082cbe0 VMThread [id=3212]
    0x00834580 WatcherThread [id=3288]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 18240K, used 13464K [0x02bd0000, 0x03f90000, 0x07a90000)
    eden space 16256K, 74% used [0x02bd0000, 0x037a51d8, 0x03bb0000)
    from space 1984K, 67% used [0x03bb0000, 0x03d010e0, 0x03da0000)
    to space 1984K, 0% used [0x03da0000, 0x03da0000, 0x03f90000)
    tenured generation total 241984K, used 32860K [0x07a90000, 0x166e0000, 0x42bd0000)
    the space 241984K, 13% used [0x07a90000, 0x09aa71d8, 0x09aa7200, 0x166e0000)
    compacting perm gen total 20480K, used 20423K [0x42bd0000, 0x43fd0000, 0x46bd0000)
    the space 20480K, 99% used [0x42bd0000, 0x43fc1c40, 0x43fc1e00, 0x43fd0000)
    No shared spaces configured.
    Dynamic libraries:
    0x00400000 - 0x0040c000      C:\Program Files\Java\jre1.5.0_06\bin\javaw.exe
    0x7c920000 - 0x7c9b5000      C:\WINDOWS\system32\ntdll.dll
    0x7c800000 - 0x7c91d000      C:\WINDOWS\system32\kernel32.dll
    0x77da0000 - 0x77e47000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77e50000 - 0x77ee1000      C:\WINDOWS\system32\RPCRT4.dll
    0x77d10000 - 0x77d9e000      C:\WINDOWS\system32\USER32.dll
    0x77ef0000 - 0x77f37000      C:\WINDOWS\system32\GDI32.dll
    0x77be0000 - 0x77c38000      C:\WINDOWS\system32\MSVCRT.dll
    0x76300000 - 0x7631d000      C:\WINDOWS\system32\IMM32.DLL
    0x621f0000 - 0x621f9000      C:\WINDOWS\system32\LPK.DLL
    0x73fa0000 - 0x7400b000      C:\WINDOWS\system32\USP10.dll
    0x6d670000 - 0x6d804000      C:\Program Files\Java\jre1.5.0_06\bin\client\jvm.dll
    0x76b10000 - 0x76b3a000      C:\WINDOWS\system32\WINMM.dll
    0x6d280000 - 0x6d288000      C:\Program Files\Java\jre1.5.0_06\bin\hpi.dll
    0x76bc0000 - 0x76bcb000      C:\WINDOWS\system32\PSAPI.DLL
    0x6d640000 - 0x6d64c000      C:\Program Files\Java\jre1.5.0_06\bin\verify.dll
    0x6d300000 - 0x6d31d000      C:\Program Files\Java\jre1.5.0_06\bin\java.dll
    0x6d660000 - 0x6d66f000      C:\Program Files\Java\jre1.5.0_06\bin\zip.dll
    0x6d000000 - 0x6d167000      C:\Program Files\Java\jre1.5.0_06\bin\awt.dll
    0x72f70000 - 0x72f96000      C:\WINDOWS\system32\WINSPOOL.DRV
    0x76990000 - 0x76acd000      C:\WINDOWS\system32\ole32.dll
    0x5a410000 - 0x5a447000      C:\WINDOWS\system32\uxtheme.dll
    0x736d0000 - 0x73719000      C:\WINDOWS\system32\ddraw.dll
    0x73b30000 - 0x73b36000      C:\WINDOWS\system32\DCIMAN32.dll
    0x738b0000 - 0x73980000      C:\WINDOWS\system32\D3DIM700.DLL
    0x74680000 - 0x746cb000      C:\WINDOWS\system32\MSCTF.dll
    0x73640000 - 0x7366e000      C:\WINDOWS\system32\msctfime.ime
    0x6d1f0000 - 0x6d203000      C:\Program Files\Java\jre1.5.0_06\bin\deploy.dll
    0x76680000 - 0x76723000      C:\WINDOWS\system32\WININET.dll
    0x765e0000 - 0x76672000      C:\WINDOWS\system32\CRYPT32.dll
    0x76db0000 - 0x76dc2000      C:\WINDOWS\system32\MSASN1.dll
    0x770f0000 - 0x7717c000      C:\WINDOWS\system32\OLEAUT32.dll
    0x77f40000 - 0x77fb6000      C:\WINDOWS\system32\SHLWAPI.dll
    0x75c60000 - 0x75cfc000      C:\WINDOWS\system32\urlmon.dll
    0x77bd0000 - 0x77bd8000      C:\WINDOWS\system32\VERSION.dll
    0x7d590000 - 0x7dd83000      C:\WINDOWS\system32\SHELL32.dll
    0x77180000 - 0x77282000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2180_x-ww_a84f1ff9\comctl32.dll
    0x5c820000 - 0x5c8b7000      C:\WINDOWS\system32\comctl32.dll
    0x6d5d0000 - 0x6d5ef000      C:\Program Files\Java\jre1.5.0_06\bin\RegUtils.dll
    0x49230000 - 0x494f6000      C:\WINDOWS\system32\msi.dll
    0x6d240000 - 0x6d27d000      C:\Program Files\Java\jre1.5.0_06\bin\fontmanager.dll
    0x6d4c0000 - 0x6d4d3000      C:\Program Files\Java\jre1.5.0_06\bin\net.dll
    0x71a10000 - 0x71a27000      C:\WINDOWS\system32\WS2_32.dll
    0x71a00000 - 0x71a08000      C:\WINDOWS\system32\WS2HELP.dll
    0x6d4e0000 - 0x6d4e9000      C:\Program Files\Java\jre1.5.0_06\bin\nio.dll
    0x77fc0000 - 0x77fd1000      C:\WINDOWS\system32\Secur32.dll
    0x76eb0000 - 0x76eec000      C:\WINDOWS\system32\RASAPI32.DLL
    0x76e60000 - 0x76e72000      C:\WINDOWS\system32\rasman.dll
    0x69a00000 - 0x69a54000      C:\WINDOWS\system32\NETAPI32.dll
    0x76e80000 - 0x76eaf000      C:\WINDOWS\system32\TAPI32.dll
    0x76e50000 - 0x76e5e000      C:\WINDOWS\system32\rtutils.dll
    0x77c40000 - 0x77c63000      C:\WINDOWS\system32\msv1_0.dll
    0x76d30000 - 0x76d48000      C:\WINDOWS\system32\iphlpapi.dll
    0x72240000 - 0x72245000      C:\WINDOWS\system32\sensapi.dll
    0x759d0000 - 0x75a7e000      C:\WINDOWS\system32\USERENV.dll
    0x49520000 - 0x49548000      C:\WINDOWS\system32\rsaenh.dll
    0x719b0000 - 0x719ee000      C:\WINDOWS\system32\mswsock.dll
    0x605b0000 - 0x60605000      C:\WINDOWS\system32\hnetcfg.dll
    0x719f0000 - 0x719f8000      C:\WINDOWS\System32\wshtcpip.dll
    0x76ef0000 - 0x76f17000      C:\WINDOWS\system32\DNSAPI.dll
    0x76f80000 - 0x76f88000      C:\WINDOWS\System32\winrnr.dll
    0x76f30000 - 0x76f5c000      C:\WINDOWS\system32\WLDAP32.dll
    0x76f90000 - 0x76f96000      C:\WINDOWS\system32\rasadhlp.dll
    0x71a30000 - 0x71a3b000      C:\WINDOWS\system32\wsock32.dll
    0x5d860000 - 0x5d86d000      C:\WINDOWS\system32\pstorec.dll
    0x76af0000 - 0x76b01000      C:\WINDOWS\system32\ATL.DLL
    0x6d3c0000 - 0x6d3df000      C:\Program Files\Java\jre1.5.0_06\bin\jpeg.dll
    VM Arguments:
    jvm_args: -Xms256m -Xmx1024m -Xbootclasspath/a:C:\Program Files\Java\jre1.5.0_06\lib\javaws.jar;C:\Program Files\Java\jre1.5.0_06\lib\deploy.jar -Djnlpx.home=C:\Program Files\Java\jre1.5.0_06\bin -Djnlpx.splashport=1803 -Djnlpx.jvm="C:\Program Files\Java\jre1.5.0_06\bin\javaw.exe" -Djnlpx.remove=true -Djava.security.policy=file:C:\Program Files\Java\jre1.5.0_06\lib\security\javaws.policy -DtrustProxy=true -Xverify:remote -Djnlpx.heapsize=256m,1024m
    java_command: com.sun.javaws.Main C:\DOCUME~1\NHsiao\LOCALS~1\Temp\javaws4
    Launcher Type: SUN_STANDARD
    Environment Variables:
    JAVA_HOME=C:\java\jdk1.5.0_04
    CLASSPATH=.;C:\Program Files\Java\jre1.5.0_06\lib\ext\QTJava.zip
    PATH=C:\Program Files\Java\jre1.5.0_06\bin;C:\PROGRA~1\Borland\CBUILD~1\Projects\Bpl;C:\PROGRA~1\Borland\CBUILD~1\Bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;c:\java\j2sdk1.4.2_02\bin;C:\veritas\products\appsaver\collector\bin;C:\veritas\products\appsaver\forensics\bin;C:\Program Files\VERITAS\VERITAS Object Bus\bin;C:\Program Files\RSA Security\RSA SecurID Software Token\;C:\PROGRA~1\ATT\Graphviz\bin;C:\Program Files\QuickTime\QTSystem\;C:\Program Files\Reflection\;;C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322;C:\java\jdk1.5.0_04\bin;"C:\Program Files\Java\jre1.5.0_06\bin"
    USERNAME=NHsiao
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 6 Model 9 Stepping 5, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows XP Build 2600 Service Pack 2
    CPU:total 1 family 6, cmov, cx8, fxsr, mmx, sse, sse2
    Memory: 4k page, physical 1046744k(370004k free), swap 2519784k(1552064k free)
    vm_info: Java HotSpot(TM) Client VM (1.5.0_06-b05) for windows-x86, built on Nov 10 2005 11:12:14 by "java_re" with MS VC++ 6.0

    After looking at the threads it looks like the bug has been around since an earlier release of 1.3. Unfortunately weblogic does not support the latest jdk and looks like we are stuck with this problem (for now).
    At least I will have some info to pass up the food chain.
    Thanks again.

  • File not found - opening files from appXplorer

    Quite strange this one. Bear in mind, I've just started my first JSP project. So if I get some terminology wrong, please be gentle. :)
    OK; start up NitroX and open the three files I have (two in web/ one in pages/). index.jsp includes two of the other files (using <%@include/> directive)
    All is well, it recognises that they are included and the top-level tag references and variables are available in the included pages.
    When I edit and save any one of the pages, all the other pages loose thier references. Variables and tags become unresolved. If I then close the page and try and reopen it, I get an alert box with "The file file:/x:/webapps/root/cars/pages/config.jsp cannot be found".
    Any changes I make and save are successful. Restarting NitroX fixes the problem, but it happens again as soon as I save the first time. X: is a network drive, but it's actually a network drive on my machine.
    Any suggestions? Configuration dump follows:
    *** Date: 7/09/05 15:11
    *** Platform Details:
    *** System properties:
    awt.toolkit=sun.awt.windows.WToolkit
    eclipse.application=org.eclipse.ui.ide.workbench
    eclipse.buildId=I200409212000
    eclipse.commands=-os
    win32
    -ws
    win32
    -arch
    x86
    -showsplash
    C:\Documents and Settings\Shed Media\Desktop\eclipse\eclipse.exe -showsplash 600
    -exitdata
    C:\Documents and Settings\Shed Media\Desktop\eclipse\eclipse.exe -exitdata fe8_38
    -feature
    com.m7.nitrox
    -application
    org.eclipse.ui.ide.workbench
    -vm
    C:\WINDOWS\system32\javaw.exe
    eclipse.product=com.m7.nitrox
    eclipse.startTime=1126068873218
    eclipse.vm=C:\WINDOWS\system32\javaw.exe
    eclipse.vmargs=-Xms128M
    -Xmx512M
    -Dosgi.splashLocation=C:\NitroX_JSP_Editor_2.1_425\NitroX\splash.bmp
    -cp
    C:\Documents and Settings\Shed Media\Desktop\eclipse\startup.jar
    org.eclipse.core.launcher.Main
    eof=eof
    file.encoding=Cp1252
    file.encoding.pkg=sun.io
    file.separator=\
    http.proxyHost=
    http.proxyPort=
    http.proxySet=true
    java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment
    java.awt.printerjob=sun.awt.windows.WPrinterJob
    java.class.path=C:\Documents and Settings\Shed Media\Desktop\eclipse\startup.jar
    java.class.version=49.0
    java.endorsed.dirs=C:\Program Files\Java\jre1.5.0_02\lib\endorsed
    java.ext.dirs=C:\Program Files\Java\jre1.5.0_02\lib\ext
    java.home=C:\Program Files\Java\jre1.5.0_02
    java.io.tmpdir=C:\DOCUME~1\SHEDME~1\LOCALS~1\Temp\
    java.library.path=C:\WINDOWS\system32;.;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\usr\bin;C:\Program Files\OPENXTRA\WinPCap
    java.runtime.name=Java(TM) 2 Runtime Environment, Standard Edition
    java.runtime.version=1.5.0_02-b09
    java.specification.name=Java Platform API Specification
    java.specification.vendor=Sun Microsystems Inc.
    java.specification.version=1.5
    java.vendor=Sun Microsystems Inc.
    java.vendor.url=http://java.sun.com/
    java.vendor.url.bug=http://java.sun.com/cgi-bin/bugreport.cgi
    java.version=1.5.0_02
    java.vm.info=mixed mode, sharing
    java.vm.name=Java HotSpot(TM) Client VM
    java.vm.specification.name=Java Virtual Machine Specification
    java.vm.specification.vendor=Sun Microsystems Inc.
    java.vm.specification.version=1.0
    java.vm.vendor=Sun Microsystems Inc.
    java.vm.version=1.5.0_02-b09
    line.separator=
    m7.launcher=true
    org.eclipse.jdt.debug.ui.scrapbookActive=false
    org.osgi.framework.executionenvironment=
    org.osgi.framework.language=en
    org.osgi.framework.os.name=WindowsXP
    org.osgi.framework.os.version=5.1
    org.osgi.framework.processor=x86
    org.osgi.framework.vendor=Eclipse
    org.osgi.framework.version=1.2.0
    org.w3c.css.sac.parser=com.steadystate.css.parser.SACParser
    os.arch=x86
    os.name=Windows XP
    os.version=5.1
    osgi.arch=x86
    osgi.bundles=org.eclipse.core.runtime@2:start, org.eclipse.update.configurator@3:start
    osgi.bundles.defaultStartLevel=4
    osgi.bundlestore=c:\Documents and Settings\Shed Media\Desktop\eclipse\configuration\org.eclipse.osgi\bundles
    osgi.configuration.area=file:/c:/Documents and Settings/Shed Media/Desktop/eclipse/configuration/
    osgi.framework=file:/c:/Documents and Settings/Shed Media/Desktop/eclipse/plugins/org.eclipse.osgi_3.1.0/
    osgi.framework.beginningstartlevel=1
    osgi.framework.version=3.0.0
    osgi.frameworkClassPath=core.jar, console.jar, osgi.jar, resolver.jar, defaultAdaptor.jar, eclipseAdaptor.jar
    osgi.install.area=file:/c:/Documents and Settings/Shed Media/Desktop/eclipse/
    osgi.instance.area=file:/x:/webapps/root/
    osgi.logfile=x:\webapps\root\.metadata\.log
    osgi.manifest.cache=c:\Documents and Settings\Shed Media\Desktop\eclipse\configuration\org.eclipse.osgi\manifests
    osgi.nl=en_AU
    osgi.os=win32
    osgi.splashLocation=C:\NitroX_JSP_Editor_2.1_425\NitroX\splash.bmp
    osgi.splashPath=platform:/base/plugins/org.eclipse.platform
    osgi.ws=win32
    path.separator=;
    sun.arch.data.model=32
    sun.boot.class.path=C:\Program Files\Java\jre1.5.0_02\lib\rt.jar;C:\Program Files\Java\jre1.5.0_02\lib\i18n.jar;C:\Program Files\Java\jre1.5.0_02\lib\sunrsasign.jar;C:\Program Files\Java\jre1.5.0_02\lib\jsse.jar;C:\Program Files\Java\jre1.5.0_02\lib\jce.jar;C:\Program Files\Java\jre1.5.0_02\lib\charsets.jar;C:\Program Files\Java\jre1.5.0_02\classes
    sun.boot.library.path=C:\Program Files\Java\jre1.5.0_02\bin
    sun.cpu.endian=little
    sun.cpu.isalist=
    sun.desktop=windows
    sun.io.unicode.encoding=UnicodeLittle
    sun.jnu.encoding=Cp1252
    sun.management.compiler=HotSpot Client Compiler
    sun.os.patch.level=Service Pack 2
    user.country=AU
    user.dir=C:\Documents and Settings\Shed Media\Desktop\eclipse
    user.home=C:\Documents and Settings\Shed Media
    user.language=en
    user.name=Shed Media
    user.timezone=Australia/Brisbane
    user.variant=
    *** Features:
    com.exadel.studio (3.0.3) "Exadel Studio Pro"
    com.m7.nitrox (2.1.0) "NitroX"
    org.eclipse.emf (2.1.0) "Eclipse Modeling Framework (EMF)"
    org.eclipse.emf.ecore.sdo (2.1.0) "EMF Service Data Objects (SDO)"
    org.eclipse.gef (3.1.0) "Graphical Editing Framework"
    org.eclipse.jdt (3.1.0) "Eclipse Java Development Tools"
    org.eclipse.jdt.source (3.1.0) "Eclipse Java Development Tools SDK"
    org.eclipse.jst (0.7.0) "J2EE Standard Tools"
    org.eclipse.jst (0.7.0) "J2EE Standard Tools"
    org.eclipse.pde (3.1.0) "Eclipse Plug-in Development Environment"
    org.eclipse.pde.source (3.1.0) "Eclipse Plug-in Development Environment Developer Resources"
    org.eclipse.platform (3.1.0) "Eclipse Platform"
    org.eclipse.platform.source (3.1.0) "Eclipse Platform Plug-in Developer Resources"
    org.eclipse.sdk (3.1.0) "Eclipse Project SDK"
    org.eclipse.wst (0.7.0) "Web Standard Tools"
    org.eclipse.wst (0.7.0) "Web Standard Tools"
    org.eclipse.xsd (2.1.0) "XML Schema Infoset Model (XSD)"
    org.springframework.ide.eclipse (1.2.2) "Spring IDE"
    *** Plug-in Registry:
    com.exadel.common (7.0.3) "Exadel Common" [Installed]
    com.exadel.common.gef (2.0.3) "Exadel GEF Common" [Installed]
    com.exadel.examples (1.0.3) "Exadel Examples" [Resolved]
    com.exadel.jsf (6.0.3) "Exadel JSF Studio" [Installed]
    com.exadel.jsf.examples (1.0.3) "JSF Examples" [Resolved]
    com.exadel.jsf.ui (2.0.3) "Exadel JSF Studio" [Installed]
    com.exadel.jsf.verification (7.0.3) "JSF Verification" [Installed]
    com.exadel.model (7.0.3) "Exadel Model" [Installed]
    com.exadel.model.ui (7.0.3) "Exadel Model UI" [Installed]
    com.exadel.model.ui.editors (7.0.3) "Exadel Editors" [Installed]
    com.exadel.model.ui.views (7.0.3) "Exadel Studio" [Installed]
    com.exadel.orm2.core (1.0.3) "ORM_CORE" [Installed]
    com.exadel.orm2.hblibs (1.0.3) "Hibernate Jars" [Resolved]
    com.exadel.orm2.view (1.0.3) "View Plug-in" [Installed]
    com.exadel.palette (7.0.3) "Exadel Studio Palette" [Installed]
    com.exadel.project.templates (7.0.3) "Exadel Project Templates" [Installed]
    com.exadel.prompting.knowledgebase (7.0.3) "Exadel Struts Studio Prompting Knowledgebase" [Installed]
    com.exadel.struts (7.0.3) "com.exadel.struts" [Installed]
    com.exadel.struts.debug (2.0.3) "Exadel Struts Debugger" [Installed]
    com.exadel.struts.examples (1.0.3) "Struts Examples" [Resolved]
    com.exadel.struts.pro.ui (7.0.3) "Struts Studio UI" [Installed]
    com.exadel.struts.ui (7.0.3) "Exadel Struts Studio" [Installed]
    com.exadel.struts.validator.ui (7.0.3) "Exadel Struts Studio Validator" [Installed]
    com.exadel.struts.verification (7.0.3) "Struts Verification" [Installed]
    com.exadel.studio (3.0.3) "Exadel Studio Pro" [Resolved]
    com.exadel.templates (2.0.3) "Exadel Templates Plug-in" [Installed]
    com.exadel.texteditors.extensions (1.0.3) "Text Editors Extensions" [Installed]
    com.exadel.texteditors.extensions.jsf (1.0.3) "Jsf Text Editors Extensions" [Installed]
    com.exadel.texteditors.extensions.struts (1.0.3) "Struts Text Editors Extensions" [Installed]
    com.exadel.texteditors.jsp (7.0.3) "Jsp Editor Plug-in" [Installed]
    com.exadel.texteditors.jsp.preview.verification (7.0.4) "Jsp Editor Plug-in" [Installed]
    com.exadel.texteditors.xml (7.0.3) "Xml Editor Plug-in" [Installed]
    com.exadel.ui (2.0.3) "Exadel UI Plugin" [Installed]
    com.exadel.verification (7.0.3) "com.exadel.verification" [Installed]
    com.exadel.verification.ui (7.0.3) "Exadel Studio Verification Framework" [Installed]
    com.exadel.vpe (1.0.3) "Vpe Plug-in" [Installed]
    com.exadel.vpe.mozilla (1.0.3) "Visual Page Editor" [Resolved]
    com.exadel.vpe.mozilla.win32 (1.0.3) "Win32 Fragment" [Resolved]
    com.exadel.web (7.0.3) "Web" [Installed]
    com.exadel.web.debug (2.0.3) "Web Debug" [Installed]
    com.exadel.web.debug.ui (2.0.3) "Web Debug UI" [Installed]
    com.exadel.web.tiles (7.0.3) "Web Tiles" [Installed]
    com.exadel.web.tiles.ui (7.0.3) "Exadel Tiles" [Installed]
    com.exadel.web.ui (7.0.3) "Web UI" [Installed]
    com.ibm.etools.emf.event (3.0.0.1) "Event Model" [Resolved]
    com.m7.nitrox (2.1.0) "NitroX" [Active]
    com.m7.nitrox.eclipse3.0 (2.1.0) "NitroX Eclipse 3.0 Fragment" [Resolved]
    com.neomalogic.solex (0.5.2.b) "Solex" [Resolved]
    com.rohanclan.cfml (1.1.17.2) "CFML Plug-in" [Resolved]
    nu.psnet.quickimage (0.2.0) "QuickImage" [Resolved]
    org.apache.ant (1.6.2) "Apache Ant" [Resolved]
    org.apache.axis (1.2.1) "Axis121 Plug-in" [Resolved]
    org.apache.lucene (1.3.0) "Apache Lucene" [Resolved]
    org.apache.wsil4j (1.0.0) "Apache WSIL4J 1.0" [Resolved]
    org.apache.xerces (2.7.0) "Xerces 2.7.0" [Resolved]
    org.eclipse.ant.core (3.1.0) "Ant Build Tool Core" [Resolved]
    org.eclipse.ant.ui (3.1.0) "Ant UI" [Resolved]
    org.eclipse.compare (3.1.0) "Compare Support" [Active]
    org.eclipse.core.boot (3.0.0) "Core Boot" [Resolved]
    org.eclipse.core.expressions (3.1.0) "Expression Language" [Active]
    org.eclipse.core.filebuffers (3.1.0) "File Buffers" [Active]
    org.eclipse.core.resources (3.1.0) "Core Resource Management" [Active]
    org.eclipse.core.resources.win32 (3.0.0) "Core Resource Management Win32 Fragment" [Resolved]
    org.eclipse.core.runtime (3.1.0) "Core Runtime" [Active]
    org.eclipse.core.runtime.compatibility (3.0.0) "Core Runtime Plug-in Compatibility" [Resolved]
    org.eclipse.core.variables (3.0.0) "Core Variables" [Resolved]
    org.eclipse.debug.core (3.1.0) "Debug Core" [Active]
    org.eclipse.debug.ui (3.1.0) "Debug UI" [Active]
    org.eclipse.draw2d (3.1.0) "Draw2d" [Resolved]
    org.eclipse.emf (2.1.0) "Eclipse Modeling Framework (EMF)" [Resolved]
    org.eclipse.emf.ant (2.1.0) "EMF Ant Tasks" [Resolved]
    org.eclipse.emf.codegen (2.1.0) "EMF Template Code Generator" [Resolved]
    org.eclipse.emf.codegen.ecore (2.1.0) "EMF Ecore Code Generation" [Resolved]
    org.eclipse.emf.codegen.ecore.ui (2.1.0) "EMF Ecore Code Generation UI" [Resolved]
    org.eclipse.emf.codegen.ui (2.1.0) "EMF Template Code Generator UI" [Resolved]
    org.eclipse.emf.common (2.1.0) "EMF Common" [Resolved]
    org.eclipse.emf.common.ui (2.1.0) "EMF Common UI" [Resolved]
    org.eclipse.emf.commonj.sdo (2.1.0) "CommonJ SDO" [Resolved]
    org.eclipse.emf.ecore (2.1.0) "EMF Ecore" [Resolved]
    org.eclipse.emf.ecore.change (2.1.0) "EMF Ecore Change Model" [Resolved]
    org.eclipse.emf.ecore.change.edit (2.1.0) "EMF Ecore Change Edit Support" [Resolved]
    org.eclipse.emf.ecore.edit (2.1.0) "EMF Ecore Edit Support" [Resolved]
    org.eclipse.emf.ecore.editor (2.1.0) "Sample Ecore Editor" [Resolved]
    org.eclipse.emf.ecore.sdo (2.1.0) "EMF Service Data Objects (SDO)" [Resolved]
    org.eclipse.emf.ecore.sdo.edit (2.1.0) "EMF Service Data Objects (SDO) Edit Support" [Resolved]
    org.eclipse.emf.ecore.sdo.editor (2.1.0) "EMF Service Data Objects (SDO) Editor" [Resolved]
    org.eclipse.emf.ecore.xmi (2.1.0) "EMF XMI" [Resolved]
    org.eclipse.emf.edit (2.1.0) "EMF Edit" [Resolved]
    org.eclipse.emf.edit.ui (2.1.0) "EMF Edit UI" [Resolved]
    org.eclipse.emf.importer (2.1.0) "EMF Model Import Support" [Resolved]
    org.eclipse.emf.importer.ecore (2.1.0) "EMF Ecore Importer" [Resolved]
    org.eclipse.emf.importer.java (2.1.0) "EMF Annotated Java Importer" [Resolved]
    org.eclipse.emf.importer.rose (2.1.0) "EMF Rose Importer" [Resolved]
    org.eclipse.emf.mapping (2.1.0) "EMF Mapping" [Resolved]
    org.eclipse.emf.mapping.ecore2ecore (2.1.0) "Ecore to Ecore Mapping" [Resolved]
    org.eclipse.emf.mapping.ecore2ecore.editor (2.1.0) "Ecore to Ecore Mapping Editor" [Resolved]
    org.eclipse.emf.mapping.ecore2xml (2.1.0) "Ecore to XML Mapping" [Resolved]
    org.eclipse.emf.mapping.ecore2xml.ui (2.1.0) "Ecore to XML Mapping UI" [Resolved]
    org.eclipse.emf.mapping.ui (2.1.0) "EMF Mapping UI" [Resolved]
    org.eclipse.emf.mapping.xsd2ecore (2.1.0) "XSD to Ecore Mapping" [Resolved]
    org.eclipse.emf.mapping.xsd2ecore.editor (2.1.0) "XSD to Ecore Mapping Editor" [Resolved]
    org.eclipse.gef (3.1.0) "Graphical Editing Framework" [Resolved]
    org.eclipse.help (3.0.0) "Help System Core" [Active]
    org.eclipse.help.appserver (3.0.0) "Help Application Server" [Resolved]
    org.eclipse.help.base (3.0.0) "Help System Base" [Resolved]
    org.eclipse.help.ide (3.0.0) "Help System IDE" [Resolved]
    org.eclipse.help.ui (3.0.0) "Help System UI" [Resolved]
    org.eclipse.help.webapp (3.0.0) "Help System Webapp" [Resolved]
    org.eclipse.jdt (3.1.0) "Eclipse Java Development Tools" [Resolved]
    org.eclipse.jdt.core (3.1.0) "Java Development Tools Core" [Active]
    org.eclipse.jdt.debug (3.1.0) "JDI Debug Model" [Active]
    org.eclipse.jdt.debug.ui (3.1.0) "JDI Debug UI" [Active]
    org.eclipse.jdt.doc.isv (3.1.0) "Eclipse JDT Plug-in Developer Guide" [Resolved]
    org.eclipse.jdt.doc.user (3.1.0) "Eclipse Java Development User Guide" [Resolved]
    org.eclipse.jdt.junit (3.1.0) "Java Development Tools JUnit support" [Resolved]
    org.eclipse.jdt.junit.runtime (3.1.0) "Java Development Tools JUnit runtime support" [Resolved]
    org.eclipse.jdt.launching (3.1.0) "Java Development Tools Launching Support" [Active]
    org.eclipse.jdt.source (3.1.0) "Eclipse Java Development Tools SDK" [Resolved]
    org.eclipse.jdt.ui (3.1.0) "Java Development Tools UI" [Active]
    org.eclipse.jem (1.1.0) "Java EMF Model" [Installed]
    org.eclipse.jem.beaninfo (1.1.0) "Java EMF Model BeanInfo (Introspection) Support" [Installed]
    org.eclipse.jem.proxy (1.1.0) "Java EMF Model Proxy Support" [Installed]
    org.eclipse.jem.ui (1.1.0) "Java EMF Model UI" [Installed]
    org.eclipse.jem.util (1.1.0) "Java EMF Model Utilities" [Installed]
    org.eclipse.jem.workbench (1.1.0) "Java EMF Model Workbench Support" [Installed]
    org.eclipse.jface (3.1.0) "JFace" [Active]
    org.eclipse.jface.text (3.1.0) "JFace Text" [Active]
    org.eclipse.jst (0.7.0) "J2EE Standard Tools" [Resolved]
    org.eclipse.jst.common.annotations.controller (0.7.0) "Annotation Controller Plug-in" [Installed]
    org.eclipse.jst.common.annotations.core (0.7.0) "Annotation Core Plug-in" [Installed]
    org.eclipse.jst.common.annotations.ui (0.7.0) "Ui Plug-in" [Installed]
    org.eclipse.jst.common.frameworks (0.7.0) "Integration Plug-in" [Installed]
    org.eclipse.jst.common.navigator.java (0.7.0) "Navigator Plug-in" [Installed]
    org.eclipse.jst.doc.user (0.7.0) "JST User Doc Plug-in" [Resolved]
    org.eclipse.jst.ejb.ui (0.7.0) "WTP EJB UI Plug-in" [Installed]
    org.eclipse.jst.j2ee (0.7.0) "J2EE Component" [Installed]
    org.eclipse.jst.j2ee.core (0.7.0) "J2EE Core Component" [Installed]
    org.eclipse.jst.j2ee.ejb (0.7.0) "EJB component Plug-in" [Installed]
    org.eclipse.jst.j2ee.ejb.annotation.model (0.7.0) "EJB Annotation Model Plug-in" [Installed]
    org.eclipse.jst.j2ee.ejb.annotations.emitter (0.7.0) "EJB Emitter Plug-in" [Installed]
    org.eclipse.jst.j2ee.ejb.annotations.ui (0.7.0) "EJB Annotations Ui Plug-in" [Installed]
    org.eclipse.jst.j2ee.ejb.annotations.xdoclet (0.7.0) "Xdoclet Annotations Plug-in" [Installed]
    org.eclipse.jst.j2ee.jca (0.7.0) "JCA Plug-in" [Installed]
    org.eclipse.jst.j2ee.jca.ui (0.7.0) "WTP JCA UI Plug-in" [Installed]
    org.eclipse.jst.j2ee.navigator.ui (0.7.0) "J2EE Extensions to Common Navigator" [Installed]
    org.eclipse.jst.j2ee.ui (0.7.0) "WTP J2EE UI Plug-in" [Installed]
    org.eclipse.jst.j2ee.web (0.7.0) "Web Plug-in" [Installed]
    org.eclipse.jst.j2ee.webservice (0.7.0) "Web Service Plug-in" [Installed]
    org.eclipse.jst.j2ee.webservices.ui (0.7.0) "WTP Webservice UI Plug-in" [Installed]
    org.eclipse.jst.jsp.core (0.7.0) "Structured Source JSP Model" [Installed]
    org.eclipse.jst.jsp.core (0.7.1) "Structured Source JSP Model" [Installed]
    org.eclipse.jst.jsp.ui (0.7.0) "SSE JSP Source Editor" [Installed]
    org.eclipse.jst.server.core (0.7.0) "Java Server Support" [Resolved]
    org.eclipse.jst.server.generic.core (0.7.0) "Generic Server Plugin" [Resolved]
    org.eclipse.jst.server.generic.serverdefinitions (0.7.0) "Generic server example definitions" [Installed]
    org.eclipse.jst.server.generic.ui (0.7.0) "Generic Server Plugin UI" [Installed]
    org.eclipse.jst.server.geronimo.core (0.7.0) "Geronimo server support" [Installed]
    org.eclipse.jst.server.geronimo.ui (0.7.0) "Geronimo server UI support" [Installed]
    org.eclipse.jst.server.tomcat.core (0.7.0) "Apache Tomcat Support" [Installed]
    org.eclipse.jst.server.tomcat.ui (0.7.0) "Apache Tomcat UI Support" [Installed]
    org.eclipse.jst.server.ui (0.7.0) "Java Server UI Support" [Installed]
    org.eclipse.jst.server.websphere.core (0.7.0) "WebSphere Generic Server Definition Core Plug-in" [Installed]
    org.eclipse.jst.servlet.ui (0.7.0) "WTP Servlet UI Plug-in" [Installed]
    org.eclipse.jst.ws (0.7.0) "Web Services" [Installed]
    org.eclipse.jst.ws.axis.consumption.core (0.7.0) "Web service Axis Consumption Core" [Installed]
    org.eclipse.jst.ws.axis.consumption.ui (0.7.0) "Webservice Axis Consumption UI" [Installed]
    org.eclipse.jst.ws.axis.consumption.ui (0.7.1) "Webservice Axis Consumption UI" [Installed]
    org.eclipse.jst.ws.axis.creation.ui (0.7.0) "Webservice Axis Creation UI" [Installed]
    org.eclipse.jst.ws.consumption (0.7.0) "Web Services Consumption" [Installed]
    org.eclipse.jst.ws.consumption.ui (0.7.0) "Web Services Consumption Graphical User Interface" [Installed]
    org.eclipse.jst.ws.consumption.ui (0.7.1) "Web Services Consumption Graphical User Interface" [Installed]
    org.eclipse.jst.ws.creation.ejb.ui (0.7.0) "Web Services Creation EJB Graphical User Interface" [Installed]
    org.eclipse.jst.ws.creation.ui (0.7.0) "Web Services Creation Graphical User Interface" [Installed]
    org.eclipse.jst.ws.creation.ui (0.7.1) "Web Services Creation Graphical User Interface" [Installed]
    org.eclipse.jst.ws.uddiregistry (0.7.0) "Web Services Universal Description Discovery and Integration Registry" [Installed]
    org.eclipse.jst.ws.ui (0.7.0) "Web Services Graphical User Interface" [Installed]
    org.eclipse.jst.ws.ui (0.7.1) "Web Services Graphical User Interface" [Installed]
    org.eclipse.ltk.core.refactoring (3.1.0) "Refactoring Core" [Active]
    org.eclipse.ltk.ui.refactoring (3.1.0) "Refactoring UI" [Active]
    org.eclipse.osgi (3.1.0) "OSGi System Bundle" [Active]
    org.eclipse.osgi.services (3.0.0) "OSGi Release 3 Services" [Resolved]
    org.eclipse.osgi.util (3.0.0) "OSGi R3 Utility Classes" [Resolved]
    org.eclipse.pde (3.1.0) "Eclipse Plug-in Development Environment" [Resolved]
    org.eclipse.pde.build (3.1.0) "Plug-in Development Environment Build Support" [Resolved]
    org.eclipse.pde.core (3.1.0) "Plug-in Development Core" [Resolved]
    org.eclipse.pde.doc.user (3.1.0) "Eclipse Plug-in Development User Guide" [Resolved]
    org.eclipse.pde.junit.runtime (3.1.0) "PDE JUnit Plug-in Test" [Resolved]
    org.eclipse.pde.runtime (3.1.0) "Plug-in Development Environment Runtime" [Resolved]
    org.eclipse.pde.source (3.1.0) "Eclipse Plug-in Development Environment Developer Resources" [Resolved]
    org.eclipse.pde.ui (3.1.0) "Plug-in Development UI" [Resolved]
    org.eclipse.platform (3.1.0) "Eclipse Platform" [Resolved]
    org.eclipse.platform.doc.isv (3.1.0) "Eclipse Platform Plug-in Developer Guide" [Resolved]
    org.eclipse.platform.doc.user (3.1.0) "Eclipse Workbench User Guide" [Resolved]
    org.eclipse.platform.source (3.1.0) "Eclipse Platform Plug-in Developer Resources" [Resolved]
    org.eclipse.platform.source.win32.win32.x86 (3.1.0) "Eclipse Platform Plug-in Developer Resources" [Resolved]
    org.eclipse.sdk (3.1.0) "Eclipse Project SDK" [Resolved]
    org.eclipse.search (3.1.0) "Search Support" [Active]
    org.eclipse.swt (3.1.0) "Standard Widget Toolkit" [Resolved]
    org.eclipse.swt.win32 (3.1.0) "Standard Widget Toolkit for Windows" [Resolved]
    org.eclipse.team.core (3.1.0) "Team Support Core" [Active]
    org.eclipse.team.cvs.core (3.1.0) "CVS Team Provider Core" [Resolved]
    org.eclipse.team.cvs.ssh (3.1.0) "CVS SSH Core" [Resolved]
    org.eclipse.team.cvs.ssh2 (3.1.0) "CVS SSH2" [Resolved]
    org.eclipse.team.cvs.ui (3.1.0) "CVS Team Provider UI" [Resolved]
    org.eclipse.team.ui (3.1.0) "Team Support UI" [Active]
    org.eclipse.text (3.1.0) "Text" [Active]
    org.eclipse.tomcat (4.1.30) "Tomcat Wrapper" [Resolved]
    org.eclipse.ui (3.1.0) "Eclipse UI" [Active]
    org.eclipse.ui.cheatsheets (3.0.0) "Cheat Sheets" [Resolved]
    org.eclipse.ui.console (3.1.0) "Console" [Resolved]
    org.eclipse.ui.editors (3.1.0) "Default Text Editor" [Active]
    org.eclipse.ui.externaltools (3.1.0) "External Tools" [Active]
    org.eclipse.ui.forms (3.0.0) "Eclipse Forms" [Resolved]
    org.eclipse.ui.ide (3.1.0) "Eclipse IDE UI" [Active]
    org.eclipse.ui.intro (3.0.0) "Intro Plugin" [Resolved]
    org.eclipse.ui.presentations.r21 (3.1.0) "R21 Presentation Plug-in" [Resolved]
    org.eclipse.ui.views (3.1.0) "Views" [Active]
    org.eclipse.ui.win32 (3.1.0) "Win32 fragment" [Resolved]
    org.eclipse.ui.workbench (3.1.0) "Workbench" [Active]
    org.eclipse.ui.workbench.compatibility (3.1.0) "Workbench Compatibility" [Resolved]
    org.eclipse.ui.workbench.texteditor (3.1.0) "Text Editor Framework" [Active]
    org.eclipse.update.configurator (3.0.0) "Install/Update Configurator" [Active]
    org.eclipse.update.core (3.0.0) "Install/Update Core" [Active]
    org.eclipse.update.core.win32 (3.0.0) "Install/Update Core for Windows" [Resolved]
    org.eclipse.update.scheduler (3.0.0) "Automatic Updates Scheduler" [Active]
    org.eclipse.update.ui (3.0.0) "Install/Update UI" [Resolved]
    org.eclipse.wst (0.7.0) "Web Standard Tools" [Resolved]
    org.eclipse.wst.command.env (0.7.0) "Environment Command Framework (headless)" [Resolved]
    org.eclipse.wst.command.env.core (0.7.0) "Environment Command Framework (core)" [Resolved]
    org.eclipse.wst.command.env.ui (0.7.0) "Environment Command Framework (GUI)" [Resolved]
    org.eclipse.wst.common.emf (0.7.0) "EMF Utilities" [Installed]
    org.eclipse.wst.common.emfworkbench.integration (0.7.0) "EMF Workbench Edit Plug-in" [Installed]
    org.eclipse.wst.common.frameworks (0.7.0) "org.eclipse.wst.common.frameworks" [Installed]
    org.eclipse.wst.common.frameworks.ui (0.7.0) "WTP UI Plug-in" [Installed]
    org.eclipse.wst.common.modulecore (0.7.0) "Modulecore Plug-in" [Installed]
    org.eclipse.wst.common.navigator.views (0.7.0) "Common Navigator View" [Resolved]
    org.eclipse.wst.common.navigator.workbench (0.7.0) "Navigator Workbench Components" [Installed]
    org.eclipse.wst.common.snippets (0.7.0) "Snippets View" [Resolved]
    org.eclipse.wst.common.ui (0.7.0) "Eclipse Base UI extensions" [Resolved]
    org.eclipse.wst.common.ui.properties (0.7.0) "Common Properties UI" [Resolved]
    org.eclipse.wst.common.uriresolver (0.7.0) "org.eclipse.wst.common.uriresolver" [Resolved]
    org.eclipse.wst.css.core (0.7.0) "Structured Source CSS Model" [Installed]
    org.eclipse.wst.css.ui (0.7.0) "SSE CSS Source Editor" [Installed]
    org.eclipse.wst.doc.user (0.7.0) "Web Standard Tools Help User Doc Plug-in" [Resolved]
    org.eclipse.wst.dtd.core (0.7.0) "Structured Source DTD Core" [Installed]
    org.eclipse.wst.dtd.ui (0.7.0) "SSE DTD Source Editor" [Installed]
    org.eclipse.wst.html.core (0.7.0) "Structured Source HTML Model" [Installed]
    org.eclipse.wst.html.standard.dtds (0.7.0) "Known DTDs" [Installed]
    org.eclipse.wst.html.ui (0.7.0) "HTML UI Source Editor" [Installed]
    org.eclipse.wst.internet.cache (0.7.0) "Cache URI Resolver Plug-in" [Resolved]
    org.eclipse.wst.internet.monitor.core (0.7.0) "Monitor" [Resolved]
    org.eclipse.wst.internet.monitor.ui (0.7.0) "TCP/IP Monitor" [Resolved]
    org.eclipse.wst.internet.proxy (0.7.0) "Internet Proxy Preferences" [Active]
    org.eclipse.wst.javascript.core (0.7.0) "Structured Source JavaScript Model" [Resolved]
    org.eclipse.wst.javascript.ui (0.7.0) "SSE JavaScript Source Editor" [Installed]
    org.eclipse.wst.rdb.connection.ui (0.7.0) "RDB Connection.ui" [Installed]
    org.eclipse.wst.rdb.connection.ui (0.7.1) "RDB Connection.ui" [Installed]
    org.eclipse.wst.rdb.core (0.7.0) "RDB Core" [Resolved]
    org.eclipse.wst.rdb.core.ui (0.7.0) "Core UI plugin" [Installed]
    org.eclipse.wst.rdb.core.ui (0.7.1) "Core UI plugin" [Installed]
    org.eclipse.wst.rdb.data.core (0.7.0) "Data Core Plugin" [Installed]
    org.eclipse.wst.rdb.data.ui (0.7.0) "Data UI Plugin" [Installed]
    org.eclipse.wst.rdb.dbdefinition.db2.iseries (1.0.0) "DB2 UDB iSeries Database Definition Plug-in" [Resolved]
    org.eclipse.wst.rdb.dbdefinition.db2.luw (0.7.0) "DB2 UDB Database Definition Plug-in" [Resolved]
    org.eclipse.wst.rdb.dbdefinition.db2.zseries (0.7.0) "DB2 UDB Database Definition Plug-in" [Resolved]
    org.eclipse.wst.rdb.dbdefinition.derby (0.7.0) "IBM Cloudscape Database Definition" [Resolved]
    org.eclipse.wst.rdb.dbdefinition.informix (0.7.0) "Informix Database Definition Plug-in" [Resolved]
    org.eclipse.wst.rdb.dbdefinition.mysql (0.7.0) "DBDefinition Mysql Plug-in" [Resolved]
    org.eclipse.wst.rdb.dbdefinition.oracle (0.7.0) "Oracle Database Definition Plug-in" [Resolved]
    org.eclipse.wst.rdb.dbdefinition.sqlserver (0.7.0) "SQL Server Database Definition Plug-in" [Resolved]
    org.eclipse.wst.rdb.dbdefinition.sybase (0.7.0) "Sybase Database Definition Plug-in" [Resolved]
    org.eclipse.wst.rdb.derby (0.7.0) "RDB Derby Plug-in" [Resolved]
    org.eclipse.wst.rdb.derby.ui (0.7.0) "RDB Derby Ui Plug-in" [Installed]
    org.eclipse.wst.rdb.fe.ui (0.7.0) "FE Ui Plug-in" [Installed]
    org.eclipse.wst.rdb.fe.ui.actions (0.7.0) "FE Ui Actions Plug-in" [Installed]
    org.eclipse.wst.rdb.models.dbdefinition (0.7.0) "DBDefinition Model" [Resolved]
    org.eclipse.wst.rdb.models.sql (0.7.0) "SQLModel Plug-in" [Resolved]
    org.eclipse.wst.rdb.models.sql.edit (0.7.0) "SQLModel Edit Plug-in" [Resolved]
    org.eclipse.wst.rdb.mysql (0.7.0) "RDB Mysql Plug-in" [Resolved]
    org.eclipse.wst.rdb.outputview (0.7.0) "Data Output Plug-in" [Installed]
    org.eclipse.wst.rdb.server.extensions (0.7.0) "Server Explorer Extensions Plug-in" [Installed]
    org.eclipse.wst.rdb.server.ui (0.7.0) "Server Explorer plugin" [Installed]
    org.eclipse.wst.rdb.server.ui (0.7.1) "Server Explorer plugin" [Installed]
    org.eclipse.wst.rdb.sqleditor (0.7.0) "SQL Source Editor Plugin" [Installed]
    org.eclipse.wst.rdb.sqlscrapbook (0.7.0) "Sqlscrapbook Plug-in" [Installed]
    org.eclipse.wst.server.core (0.7.0) "Server Core" [Resolved]
    org.eclipse.wst.server.ui (0.7.0) "Server UI" [Installed]
    org.eclipse.wst.sse.core (0.7.0) "Structured Text Model" [Resolved]
    org.eclipse.wst.sse.ui (0.7.0) "Structured Source Editor" [Installed]
    org.eclipse.wst.validation (0.7.0) "Validation Framework" [Installed]
    org.eclipse.wst.validation.ui (0.7.0) "Validation Framework UI" [Installed]
    org.eclipse.wst.web (0.7.0) "Simple Web Plug-in" [Installed]
    org.eclipse.wst.web.ui (0.7.0) "Simple Web UI Plug-in" [Installed]
    org.eclipse.wst.ws (0.7.0) "Web Services" [Resolved]
    org.eclipse.wst.ws.explorer (0.7.0) "Web Services Explorer" [Installed]
    org.eclipse.wst.ws.explorer (0.7.1) "Web Services Explorer" [Resolved]
    org.eclipse.wst.ws.parser (0.7.0) "Web Services Description Parser" [Resolved]
    org.eclipse.wst.ws.ui (0.7.0) "Web Services UI" [Resolved]
    org.eclipse.wst.wsdl (0.7.0) "WSDL Model" [Resolved]
    org.eclipse.wst.wsdl.ui (0.7.0) "WSDL Editor" [Installed]
    org.eclipse.wst.wsdl.ui (0.7.1) "WSDL Editor" [Installed]
    org.eclipse.wst.wsdl.validation (0.7.0) "WSDL Validator" [Installed]
    org.eclipse.wst.wsi (0.7.0) "WSI Conformance Tools" [Installed]
    org.eclipse.wst.wsi.ui (0.7.0) "Soap Monitor" [Installed]
    org.eclipse.wst.xml.core (0.7.0) "Structured Source XML Model" [Installed]
    org.eclipse.wst.xml.core (0.7.1) "Structured Source XML Model" [Installed]
    org.eclipse.wst.xml.ui (0.7.0) "XML UI Plugin" [Installed]
    org.eclipse.wst.xml.ui (0.7.1) "XML UI Plugin" [Installed]
    org.eclipse.wst.xsd.core (0.7.0) "XSD Core Plugin" [Installed]
    org.eclipse.wst.xsd.ui (0.7.0) "XML Schema Editor" [Installed]
    org.eclipse.wst.xsd.ui (0.7.1) "XML Schema Editor" [Installed]
    org.eclipse.xsd (2.1.0) "XML Schema Infoset Model (XSD)" [Resolved]
    org.eclipse.xsd.ecore.importer (2.1.0) "XML Schema Importer for EMF" [Resolved]
    org.eclipse.xsd.edit (2.1.0) "XML Schema Edit Framework" [Resolved]
    org.eclipse.xsd.editor (2.1.0) "XML Schema Editor" [Resolved]
    org.jboss.ide.eclipse.serverdefinitions (0.7.0) "Generic server example definitions" [Installed]
    org.junit (3.8.1) "JUnit Testing Framework" [Resolved]
    org.objectweb.lomboz.common.launcher.ant (3.1.0) "Ant Launcher Plug-in" [Resolved]
    org.objectweb.lomboz.product (1.0.0) "Lomboz Plug-in" [Resolved]
    org.objectweb.lomboz.serverdefinitions (1.0.0) "Lomboz server definitions" [Installed]
    org.objectweb.lomboz.ws.axis (3.1.0) "WTP Axis Plug-in" [Resolved]
    org.objectweb.lomboz.xdoclet.codeassist (1.0.0) "JOnAS XDoclet Codeassist Plug-in" [Installed]
    org.springframework.ide.eclipse (1.2.2) "Spring IDE" [Resolved]
    org.springframework.ide.eclipse.beans.core (1.2.2) "Spring IDE Beans Core" [Active]
    org.springframework.ide.eclipse.beans.ui (1.2.2) "Spring IDE Beans UI" [Active]
    org.springframework.ide.eclipse.beans.ui.doc (1.2.1) "Spring IDE Beans Documentation" [Resolved]
    org.springframework.ide.eclipse.beans.ui.graph (1.2.1) "Spring IDE Beans Graph" [Resolved]
    org.springframework.ide.eclipse.cor

    Hi,
    Please clarify the following:
    * "X: is a network drive, but it's actually a network drive on my machine." - Is "X" a mapped drive to one of your shared folder on network?
    * What is the project directory structure with respect to WEB-INF/web.xml? Are you able to see the three pages (from web & pages folder) in NitroX Editor?
    * Does the modified content appear in "Design view" of index.jsp upon restarting NitroX?
    Ex:
    - modify one of the pages in "web" folder > save the file (alert appears)
    - restart NitroX, does index.jsp display the modified content of included page?
    * If possible please send the test case project which exhibits the behavior to [email protected]
    Thanks,
    M7 Support

  • Problem in using InitialContext to do a lookup of CMP EnitityBean.

    Hi,
    I am running WLS 5.1 SP6 on Windows98. I am trying to lookup a CMP entiry bean from
    Java 1.3 client. I can successfully create the InitialContext but having trouble in using it to do the lookup. I get the following error:
    jndiContext is javax.naming.InitialContext@61f24(This is line is the result of println : see code)
    javax.naming.NoInitialContextException: Need to specify class name in environment or system property, or as an applet parameter, or in an application resource file: java.naming.factory.initial
    at javax.naming.spi.NamingManager.getInitialContext(Unknown Source)
    at javax.naming.InitialContext.getDefaultInitCtx(Unknown Source)
    at javax.naming.InitialContext.getURLOrDefaultInitCtx(Unknown Source)
    at javax.naming.InitialContext.lookup(Unknown Source)
    at com.titan.cabin.Client_1.main(Client_1.java:21)
    My code of the Java 1.3 client is as follows:
    package com.titan.cabin;
    import com.titan.cabin.CabinHome;
    import com.titan.cabin.Cabin;
    import com.titan.cabin.CabinPK;
    import javax.naming.InitialContext;
    import javax.naming.Context;
    import javax.naming.NamingException;
    import java.rmi.RemoteException;
    import java.util.Properties;
    import java.util.Hashtable;
    public class Client_1 {
    public static void main(String [] args){
    try {
    InitialContext jndiContext = getWeblogicInitialContext();
    System.out.println("jndiContext is " + jndiContext);
    CabinHome home = (CabinHome)(jndiContext.lookup("CabinHome"));
    Cabin cabin_1 = home.create(1);
    System.out.println("created it!");
    cabin_1.setName("Master Suite");
    cabin_1.setDeckLevel(1);
    cabin_1.setShip(1);
    cabin_1.setBedCount(3);
    CabinPK pk = new CabinPK();
    pk.id = 1;
    System.out.println("keyed it! ="+ pk);
    Cabin cabin_2 = home.findByPrimaryKey(pk);
    System.out.println("found by key! ="+ cabin_2);
    System.out.println(cabin_2.getName());
    System.out.println(cabin_2.getDeckLevel());
    System.out.println(cabin_2.getShip());
    System.out.println(cabin_2.getBedCount());
    } catch (java.rmi.RemoteException re){re.printStackTrace();}
    catch (javax.naming.NamingException ne){ne.printStackTrace();}
    catch (javax.ejb.CreateException ce){ce.printStackTrace();}
    catch (javax.ejb.FinderException fe){fe.printStackTrace();}
    public static InitialContext getWeblogicInitialContext()
    throws javax.naming.NamingException {
    InitialContext ctx = null;
    Hashtable ht = new Hashtable();
    ht.put(Context.INITIAL_CONTEXT_FACTORY, weblogic.jndi.WLInitialContextFactory.class.getName());
    ht.put(Context.PROVIDER_URL, "t3://localhost:7001");
    ht.put(Context.SECURITY_PRINCIPAL, "system");
    ht.put(Context.SECURITY_CREDENTIALS, new weblogic.common.T3User("system", "askpanch"));
    try {
    ctx = new InitialContext(ht);
    // Use the context in your program
    catch (NamingException e) {
    System.out.println("InitialContext could not be created");
    System.out.println("The explanation is " + e.getExplanation());
    e.printStackTrace();
    // a failure occurred
    finally {
    try {ctx.close();}
    catch (Exception e) {
    // a failure occurred
    return ctx;
    The message printed by System.out.println shows that InitialContext is created but exception is thrown when it is used by the lookup method.
    My classpath is as follows:
    CLASSPATH=C:\VisualCafeEE\Java\Lib\ERADPUBLIC.JAR;C:\VisualCafeEE\Java\Lib\servlet.jar;C:\VisualCafeEE\Java\Lib\server.jar;C:\VisualCafeEE\Bin\Components\templa
    tes.jar;C:\VisualCafeEE\Java\Lib\javax_ejb.ZIP;C:\VisualCafeEE\Java\Lib\jndi.jar;C:\VisualCafeEE\Bin\Components\vcejbwl.jar;C:\VisualCafeEE\Bin\sb;C:\VisualCafe
    EE\Bin\sb\classes\sb.jar;.;;C:\VisualCafeEE\Java\Lib;C:\VisualCafeEE\Java\Lib\SYMCLASS.ZIP;C:\VisualCafeEE\Java\Lib\CLASSES.ZIP;C:\VisualCafeEE\Java\Lib\COLLECT
    IONS.ZIP;C:\VisualCafeEE\Java\Lib\ICEBROWSERBEAN.JAR;C:\VisualCafeEE\Java\Lib\SYMTOOLS.JAR;C:\VisualCafeEE\JFC\SWINGALL.JAR;C:\VisualCafeEE\Bin\Components\SFC.J
    AR;C:\VisualCafeEE\Bin\Components\SYMBEANS.JAR;C:\VisualCafeEE\Java\Lib\DBAW.ZIP;C:\VisualCafeEE\Bin\Components\DBAW_AWT.JAR;C:\VisualCafeEE\Bin\Components\Data
    bind.JAR;C:\VisualCafeEE\Java\Lib\ERADTOOLS.JAR;;C:\IBMVJava\eab\runtime30;C:\IBMVJava\eab\runtime20;;.;c:\Weblogic\classes;c:\weblogic\lib\weblogicaux.jar
    Any help to solove this problem from anybody is greatly appreciated. I am including some other related articles in this newsgroup for your ready reference(see below).
    Thanks a lot,
    Ashok Pancharya
    Email: [email protected]
    Sounds like your WL config is a bit different, perhaps a classpath issue or
    a missing .properties file or a different command line. For whatever
    reason, the factory does not know what class is supposed to be used as the
    initial context.
    Peace.
    Cameron Purdy
    [email protected]
    http://www.tangosol.com
    WebLogic Consulting Available
    "Chris Solar" <[email protected]> wrote in message
    news:[email protected]...
    Hi-
    I'm running WLS 5.1 on NT 4.0 (SP6).
    For some reason, I'm unable to use the default
    constructor to get an initial context. That is,
    if I try:
    InitialContext ctx = new InitialContext();
    I get a NoInitialContextException, as in:
    "Need to specify class name in environment or system
    property, or as an applet parameter, or in an application
    resource file: java.naming.factory.initial"
    This does not happen if I pass in a HashTable or Properties
    object containing a value for the initial context factory
    (even if it's just weblogic.jndi.WLInitialContextFactory).
    Colleagues of mine seem to be able to use
    the defaut constructor without any problems.
    What am I missing?
    -Chris.

    Thanks Gene. Good solution. I could solve the problem which is explained in my another article posted just before a minute you posted this response.
    Thanks again.
    Ashok Pancharya
    "Gene Chuang" <[email protected]> wrote:
    According to your getWeblogicInitialContext(), you are putting ctxt.close() in a finally block,
    which will always get executed, and then returning ctxt. Don't think you can do any lookups with a
    closed Context.
    Gene Chuang
    Join Kiko.com!
    "Ashok Pancharya" <[email protected]> wrote in message news:[email protected]...
    Hi,
    I am running WLS 5.1 SP6 on Windows98. I am trying to lookup a CMP entiry bean from
    Java 1.3 client. I can successfully create the InitialContext but having trouble in using it todo the lookup. I get the following error:
    jndiContext is javax.naming.InitialContext@61f24(This is line is the result of println : see code)
    javax.naming.NoInitialContextException: Need to specify class name in environment or systemproperty, or as an applet parameter, or in an application resource file:
    java.naming.factory.initial
    at javax.naming.spi.NamingManager.getInitialContext(Unknown Source)
    at javax.naming.InitialContext.getDefaultInitCtx(Unknown Source)
    at javax.naming.InitialContext.getURLOrDefaultInitCtx(Unknown Source)
    at javax.naming.InitialContext.lookup(Unknown Source)
    at com.titan.cabin.Client_1.main(Client_1.java:21)
    My code of the Java 1.3 client is as follows:
    package com.titan.cabin;
    import com.titan.cabin.CabinHome;
    import com.titan.cabin.Cabin;
    import com.titan.cabin.CabinPK;
    import javax.naming.InitialContext;
    import javax.naming.Context;
    import javax.naming.NamingException;
    import java.rmi.RemoteException;
    import java.util.Properties;
    import java.util.Hashtable;
    public class Client_1 {
    public static void main(String [] args){
    try {
    InitialContext jndiContext = getWeblogicInitialContext();
    System.out.println("jndiContext is " + jndiContext);
    CabinHome home = (CabinHome)(jndiContext.lookup("CabinHome"));
    Cabin cabin_1 = home.create(1);
    System.out.println("created it!");
    cabin_1.setName("Master Suite");
    cabin_1.setDeckLevel(1);
    cabin_1.setShip(1);
    cabin_1.setBedCount(3);
    CabinPK pk = new CabinPK();
    pk.id = 1;
    System.out.println("keyed it! ="+ pk);
    Cabin cabin_2 = home.findByPrimaryKey(pk);
    System.out.println("found by key! ="+ cabin_2);
    System.out.println(cabin_2.getName());
    System.out.println(cabin_2.getDeckLevel());
    System.out.println(cabin_2.getShip());
    System.out.println(cabin_2.getBedCount());
    } catch (java.rmi.RemoteException re){re.printStackTrace();}
    catch (javax.naming.NamingException ne){ne.printStackTrace();}
    catch (javax.ejb.CreateException ce){ce.printStackTrace();}
    catch (javax.ejb.FinderException fe){fe.printStackTrace();}
    public static InitialContext getWeblogicInitialContext()
    throws javax.naming.NamingException {
    InitialContext ctx = null;
    Hashtable ht = new Hashtable();
    ht.put(Context.INITIAL_CONTEXT_FACTORY,weblogic.jndi.WLInitialContextFactory.class.getName());
    ht.put(Context.PROVIDER_URL, "t3://localhost:7001");
    ht.put(Context.SECURITY_PRINCIPAL, "system");
    ht.put(Context.SECURITY_CREDENTIALS, new weblogic.common.T3User("system", "askpanch"));
    try {
    ctx = new InitialContext(ht);
    // Use the context in your program
    catch (NamingException e) {
    System.out.println("InitialContext could not be created");
    System.out.println("The explanation is " + e.getExplanation());
    e.printStackTrace();
    // a failure occurred
    finally {
    try {ctx.close();}
    catch (Exception e) {
    // a failure occurred
    return ctx;
    The message printed by System.out.println shows that InitialContext is created but exception isthrown when it is used by the lookup method.
    My classpath is as follows:
    CLASSPATH=C:\VisualCafeEE\Java\Lib\ERADPUBLIC.JAR;C:\VisualCafeEE\Java\Lib\servlet.jar;C:\VisualCafe
    EE\Java\Lib\server.jar;C:\VisualCafeEE\Bin\Components\templa
    >
    tes.jar;C:\VisualCafeEE\Java\Lib\javax_ejb.ZIP;C:\VisualCafeEE\Java\Lib\jndi.jar;C:\VisualCafeEE\Bin
    \Components\vcejbwl.jar;C:\VisualCafeEE\Bin\sb;C:\VisualCafe
    >
    EE\Bin\sb\classes\sb.jar;.;;C:\VisualCafeEE\Java\Lib;C:\VisualCafeEE\Java\Lib\SYMCLASS.ZIP;C:\Visual
    CafeEE\Java\Lib\CLASSES.ZIP;C:\VisualCafeEE\Java\Lib\COLLECT
    >
    IONS.ZIP;C:\VisualCafeEE\Java\Lib\ICEBROWSERBEAN.JAR;C:\VisualCafeEE\Java\Lib\SYMTOOLS.JAR;C:\Visual
    CafeEE\JFC\SWINGALL.JAR;C:\VisualCafeEE\Bin\Components\SFC.J
    >
    AR;C:\VisualCafeEE\Bin\Components\SYMBEANS.JAR;C:\VisualCafeEE\Java\Lib\DBAW.ZIP;C:\VisualCafeEE\Bin
    \Components\DBAW_AWT.JAR;C:\VisualCafeEE\Bin\Components\Data
    >
    bind.JAR;C:\VisualCafeEE\Java\Lib\ERADTOOLS.JAR;;C:\IBMVJava\eab\runtime30;C:\IBMVJava\eab\runtime20
    ;;.;c:\Weblogic\classes;c:\weblogic\lib\weblogicaux.jar
    Any help to solove this problem from anybody is greatly appreciated. I am including some otherrelated articles in this newsgroup for your ready reference(see below).
    Thanks a lot,
    Ashok Pancharya
    Email: [email protected]
    Sounds like your WL config is a bit different, perhaps a classpath issue or
    a missing .properties file or a different command line. For whatever
    reason, the factory does not know what class is supposed to be used as the
    initial context.
    Peace.
    Cameron Purdy
    [email protected]
    http://www.tangosol.com
    WebLogic Consulting Available
    "Chris Solar" <[email protected]> wrote in message
    news:[email protected]...
    Hi-
    I'm running WLS 5.1 on NT 4.0 (SP6).
    For some reason, I'm unable to use the default
    constructor to get an initial context. That is,
    if I try:
    InitialContext ctx = new InitialContext();
    I get a NoInitialContextException, as in:
    "Need to specify class name in environment or system
    property, or as an applet parameter, or in an application
    resource file: java.naming.factory.initial"
    This does not happen if I pass in a HashTable or Properties
    object containing a value for the initial context factory
    (even if it's just weblogic.jndi.WLInitialContextFactory).
    Colleagues of mine seem to be able to use
    the defaut constructor without any problems.
    What am I missing?
    -Chris.

Maybe you are looking for

  • Error when creating Recordset using CF and Postgres

    I'm a complete newbie when it comes to databases and development so go easy on me. I have created a simple database with a schema (ABC) and 2 tables (_Address, _Member) in Postgres 9.0.  I have installed CF 9 in development and am creating a new appl

  • Update a file from WSP in several site collection based on my SiteDefinition

    Hi, i have a minimalisitic SiteDefinition with a Stapling Feature. The Stapling Feature includes one site-scoped and another web-scoped feature. Within the Site-Scoped Feature i am deploying tweo pages. <?xml version="1.0" encoding="utf-8"?> <Element

  • Irritating Errors on help site

    I am getting the following error EVERY time I click on anything within the support/forum. "An Error has occured in the script on this page" Line: 318 Char: 23 Error: Permission denied Code: 0 Url: (Varies depending on where I am and what I am doing)

  • Publisher file will not open

    I HAVE OFFICE 365. PUBLISHER FILES WILL NOT OPEN. EVEN FILES I JUST WORKED WITH. WARNING MESSAGE SAYS A PROBLEM HAS BEEN DETECTED AND IS PROTECTING MY COMPUTER.

  • Email and app help

    i have two problems, one is when i try and setup email, it only shows the option to set up a work email with an enterprise server. 2, some of my apps wont show up on the menu