Debug Assertion from javaw.exe

I'm getting a Debug Assertion Failed from javaw.exe: (Windows 2000)
jre1.4.2\bin\javaw.exe
File: dbgheap.c
Line 1044
Expression: _CrtIsValidHeapPointer(pUserData)
This occurs on one of my native DLL method calls. Here's the scenario:
I've got a set of supplied DLLs from a manufacturer that are implemented using C++ and STL. I'm working on a wrapper DLL that maps to a Java class in that my Java class invokes the appropriate native methods in my wrapper DLL, which in turn works with the supplied vendor DLL's.
As part of the initialization, I load up my wrapper DLL, and invoke its initialize() method, which in turn instantiates a C++ object:
DShowLib::Grabber* m_pGrabber;
JNIEXPORT void JNICALL Java_biz_femtosoft_rtfrog_data_framegrabber_ImagingSourceFWFrameGrabber_initialize
(JNIEnv *, jobject)
     if( !DShowLib::InitLibrary( "********" ) )
          fprintf( stderr, "The library could not be initialized ");
          fprintf( stderr, "(invalid license key?).\n");
          exit( 1 );
     m_pGrabber = new DShowLib::Grabber();
     fprintf( stdout, "[DEBUG] The library has been initialized \n");
Note that this C++ object is referenced by a global variable, m_pGrabber.
In a subsequent function in my wrapper DLL, I invoke a method on the instantiated C++ object, and that is where the debug assertion happens:
JNIEXPORT jobjectArray JNICALL Java_biz_femtosoft_rtfrog_data_framegrabber_ImagingSourceFWFrameGrabber_jni_1getVideoCaptureDevices
(JNIEnv *env, jobject)
     fprintf( stdout, "[JNI FRAMEGRABBER] Entering getVideoCaptureDevices JNI function call\n");
     if (m_pGrabber != 0) {
          // Generate a list of all available video devices
          DShowLib::Grabber::tVidCapDevListPtr pVidCapDevList = m_pGrabber->getAvailableVideoCaptureDevices();
I've omitted much of the source for brevity.
Can anyone tell me what I might be doing that's causing this? I'm pretty rusty on my C++ coding, so there's a good chance that I am forgetting something quite fundamental.
Regards,
Ron Cordell

Ok, I've discovered the -Djava.library.path command line switch. That took care of the problem.
Now I can see where things fail, and it is on the return that the exception occurs. The code that is executing is shown below. Upon execution of the return 0 statement, I get the Debug Assertion Failure. Is it because there is some local storage hanging around?
JNIEXPORT jobjectArray JNICALL Java_biz_femtosoft_rtfrog_data_framegrabber_ImagingSourceFWFrameGrabber_jni_1getVideoCaptureDevices
(JNIEnv *env, jobject)
     fprintf( stdout, "[JNI FRAMEGRABBER] Entering getVideoCaptureDevices JNI function call\n");
     if (m_pGrabber != 0) {
          // Generate a list of all available video devices
          DShowLib::Grabber::tVidCapDevListPtr pVidCapDevList = m_pGrabber->getAvailableVideoCaptureDevices();
return 0;
}

Similar Messages

  • How to assure tht javaw.exe exits from taskbar on application exit

    Hi all,
    My java application acquires a license when it runs.
    The problem arises when the application terminates abnormally,sometimes its javaw.exe doesnt stop.This doesnt lead to the release of license by tht application.
    How can i assure tht the javaw.exe file has stopped?
    Thanks & Regards
    Mansi

    MansiSachar wrote:
    Hi all,
    My java application acquires a license when it runs.
    The problem arises when the application terminates abnormally,sometimes its javaw.exe doesnt stop.This doesnt lead to the release of license by tht application.At worst that is nonsensical at best you left out information.
    If the application terminated, regardless of how, then it cannot still be running.
    A thread in java, such as the main thread, might exit, fall out of main(), via several methods. That however doesn't mean that the application has terminated. The java app will only terminate when all non-daemon threads have exited.
    "Abnormal" is less than informative. If an OS system exception occurs then the app will be terminated (see above) by the OS. Nothing in java can prevent that.
    If a java exception occurs and the main thread is exited then the app might or might not be terminated (see above.)
    Best I can suppose is that your main() is exiting but there are still non-daemon threads running. So you must find them and stop them. A common source of that problem is incorrectly exiting a java GUI. Because the java GUI creates a thread which must be stopped. That might or might not be relevant to what you are doing. There are other sources of non-terminated threads including of course the ones that you explicitly created but which might also exist via other third party libraries that you might be using. The same applies for those however, you must terminate them for the application to exit.

  • Proc "debug assertion failed!"

    hi,
    i m working on oracle 9i on windows ,when i run a proc then i get these error at end of proc, tell y m i getting these error
    debug assertion failed!
    program:preptty.exe
    file:fprintf.c
    line:56
    expression:str !=null
    for information on how your program can cause an assertion
    failure,see the visual c++ documentation on asserts.
    (please retry to debug the application)
    and then
    APPLICATION ERROR
    this instruction at "0x0040809c" referenced memory at "0x00000010".
    the memory could not be "read".
    click on OK to terminate the program
    click on CANCEL to debug the program
    now i came to know that in my proc where i used lots of time printf command
    fprintf(ptr,"Calculation Terminated Sucessfully!!!\n");
    there i m having this problem but when i coment these printf commands i didnt get this error
    id idnt know why this error coming now and how to resolve it ?
    thanks

    Why do you suspect an operating system issue?
    I'm guessing you are on Windows. If you look at fprintf.c and line 55/56 you should see:
    VALIDATERETURN( (str != NULL), EINVAL, -1);
    VALIDATERETURN( (format != NULL), EINVAL, -1);
    These are the checks for the file pointer and the format control string and if either is NULL an assertion is raised.
    Here's an easy way to see this:
    {noformat}
     * this will cause an assertion
    fprintf(NULL, "bad!");
    {noformat}
    {noformat}
     * this will cause an assertion
    fprintf(fp, NULL);
    {noformat}
    Have you confirmed that the assertion is raised from:
    fprintf(ptr,"Calculation Terminated Sucessfully!!!\n");
    Since you have "expression:str !=null" that is an indication that the file pointer is NULL. Perhaps you are not checking the file pointer before using it and it is NULL?
    Regards,
    Mark

  • Javaw.exe has encountered a problem and needs to close.

    I started getting this error a couple of days ago when I installed Open Office. Problem is that it happens with any java applications, not just Open Office. I have tried removing Java completely and then re-installing but so far have had no luck. I have tried JRE 6u19 and JRE 6u20 both with the same result.
    I ran RegSeeker to see if cleaning the registry would make a difference but it did not.
    I am running Windows XP.
    Is there a way to get more information on this problem or any known solutions?
    Thanks,

    Were you seeing this problem with 6u20 before installing OpenOffice?
    - I was not seeing this problem before installing OpenOffice. Though I don't know what version of Java I was using at the time.
    Which version number of OpenOffice was installed?
    - OpenOffice 3.2.0
    Are you seeing this from the command line?
    - Haven't tried command line. This is the standard Windows error including the options to send an error report.
    Is javaw.exe in your path?
    - Path=C:\Program Files\PHP\;C:\Program Files\Windows Resource Kits\Tools\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\QuickTime\QTSystem\;C:\Program Files\Common Files\Ahead\Lib\;C:\Program Files\Common Files\Ahead\Lib\;C:\Program Files\Common Files\Ahead\Lib\
    - So it would appear no.
    Which javaw.exe is being used?
    - I don't know. How can I find out?
    If you run your app from C:\"Program Files"\Java\jre6\bin\javaw.exe do you see the error?
    - Some confusion here perhaps. I am not trying to run an app that I wrote. I am trying to run anything that uses Java. So for example if I go to Control Panel/Java, it throws the error before opening up the Java settings interface. I am not really clear how I would try to do that through the console.
    - Simply running javaw.exe from the command line does nothing. No errors or anything. However without any parameters to pass into it that probably shouldn't be a surprise.
    - Oddly enough OpenOffice which supposedly uses Java does not throw any errors.
    What are your registry entries after the 6u20 uninstall in:
    HKEY_LOCAL_MACHINE\Software\JavaSoft\
    - Here they are:
    [HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft]
    "InstallerVersion"="1.6.0_17-b70"
    [HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Auto Update]
    "AUVersion"="2.0.2.1"
    [HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Plug-in]
    [HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Plug-in\1.6.0_20]
    "JavaHome"="C:\\Program Files\\Java\\jre6"
    "UseJava2IExplorer"=dword:00000001
    "UseNewJavaPlugin"=dword:00000001
    "HideSystemTrayIcon"=dword:00000000
    [HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Runtime Environment]
    "sponsorsoffered"="SP4;"
    "Java6FamilyVersion"="1.6.0_20"
    "CurrentVersion"="1.6"
    "BrowserJavaVersion"="1.6.0_20"
    [HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Runtime Environment\1.6]
    "JavaHome"="C:\\Program Files\\Java\\jre6"
    "RuntimeLib"="C:\\Program Files\\Java\\jre6\\bin\\client\\jvm.dll"
    "MicroVersion"="0"
    [HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Runtime Environment\1.6.0_20]
    "JavaHome"="C:\\Program Files\\Java\\jre6"
    "MicroVersion"="0"
    "RuntimeLib"="C:\\Program Files\\Java\\jre6\\bin\\client\\jvm.dll"
    [HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Runtime Environment\1.6.0_20\MSI]
    "JU"="1"
    "OEMUPDATE"=""
    "MODE"="C"
    "JQS"=""
    "FROMVERSION"="NA"
    "KERNEL"=""
    "PRODUCTVERSION"="6.0.200"
    "INSTALLDIR"="C:\\Program Files\\Java\\jre6\\"
    "SYSTRAY"="1"
    "EULA"="0"
    "IEXPLORER"="1"
    "MOZILLA"="1"
    "JAVAUPDATE"="1"
    "AUTOUPDATECHECK"="1"
    "AUTOUPDATEDELAY"=""
    "ImageCkSum"="3505863356"
    "FullVersion"="1.6.0_20-b02"
    [HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Update]
    [HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Update\Policy]
    "Country"="CA"
    "PostStatusUrl"="https://sjremetrics.java.com/b/ss//6"
    "EnableJavaUpdate"=dword:00000001
    "NotifyDownload"=dword:00000001
    "UpdateSchedule"=dword:00000000
    "Frequency"=dword:01170000
    "UpdateMin"=dword:00000016
    "ScheduleId"="S-1-5"
    "NotifyInstall"=dword:00000000
    [HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Web Start]
    "CurrentVersion"="1.6.0_20"
    [HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Web Start\1.0.1]
    "Home"="C:\\Program Files\\Java\\jre6\\bin"
    [HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Web Start\1.0.1_02]
    "Home"="C:\\Program Files\\Java\\jre6\\bin"
    [HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Web Start\1.0.1_03]
    "Home"="C:\\Program Files\\Java\\jre6\\bin"
    [HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Web Start\1.0.1_04]
    "Home"="C:\\Program Files\\Java\\jre6\\bin"
    [HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Web Start\1.2]
    "Home"="C:\\Program Files\\Java\\jre6\\bin"
    [HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Web Start\1.2.0_01]
    "Home"="C:\\Program Files\\Java\\jre6\\bin"
    [HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Web Start\1.6.0_20]
    "Home"="C:\\Program Files\\Java\\jre6\\bin"
    [HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Prefs]
    [HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Prefs\/Logitech]
    "/Default/Language"=""
    [HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Prefs\/Privilege]
    "/Has/Privilege"="1301719357"
    [HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Prefs\com]
    [HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Prefs\com\logitech]
    [HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Prefs\com\logitech\harmony]
    [HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Prefs\com\logitech\harmony\common]
    [HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Prefs\com\logitech\harmony\common\preferences]
    [HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Prefs\logitech]
    "/Default/Language"="en"

  • Receiving javaw.exe error when Installing Oracle SOA Suite 10.1.3.1.0

    Hello,
    I am installing Oracle SOA suite for Windows 10.1.3.1.0 and when it reaches 12% complete I receive the following error:
    Error signature:
    App Name: javaw.exe
    AppVer: 0.0.0.0
    ModName: easfa.dll
    ModVer: 6.0.0.7
    Offset: 0001c799
    error report shows:
    <?xml version="1.0" encoding="UTF-16"?>
    <DATABASE>
    <EXE NAME="javaw.exe" FILTER="GRABMI_FILTER_PRIVACY">
    <MATCHING_FILE NAME="awt.dll" SIZE="970862" CHECKSUM="0xD246DAA6" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" LINK_DATE="02/23/2004 07:10:19" UPTO_LINK_DATE="02/23/2004 07:10:19" />
    <MATCHING_FILE NAME="axbridge.dll" SIZE="94323" CHECKSUM="0xC85525D4" BIN_FILE_VERSION="1.4.2.40" BIN_PRODUCT_VERSION="1.4.2.40" PRODUCT_VERSION="1, 4, 2, 40" FILE_DESCRIPTION="ActiveX bridge for JavaBeans" COMPANY_NAME="JavaSoft / Sun Microsystems" PRODUCT_NAME="JavaSoft / Sun Microsystems -- ActiveX bridge" FILE_VERSION="1, 4, 2, 40" ORIGINAL_FILENAME="axbridge.dll" INTERNAL_NAME="ActiveX bridge for JavaBeans" LEGAL_COPYRIGHT="Copyright ¨ 2002" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0x26F3C" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="1.4.2.40" UPTO_BIN_PRODUCT_VERSION="1.4.2.40" LINK_DATE="02/23/2004 07:44:39" UPTO_LINK_DATE="02/23/2004 07:44:39" VER_LANGUAGE="English (United States) [0x409]" />
    <MATCHING_FILE NAME="cmm.dll" SIZE="139374" CHECKSUM="0x2266351B" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" LINK_DATE="02/23/2004 07:17:38" UPTO_LINK_DATE="02/23/2004 07:17:38" />
    <MATCHING_FILE NAME="dcpr.dll" SIZE="139375" CHECKSUM="0x53CE32F4" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" LINK_DATE="02/23/2004 07:13:42" UPTO_LINK_DATE="02/23/2004 07:13:42" />
    <MATCHING_FILE NAME="dt_shmem.dll" SIZE="24689" CHECKSUM="0xBA0CE08A" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" LINK_DATE="02/23/2004 07:24:02" UPTO_LINK_DATE="02/23/2004 07:24:02" />
    <MATCHING_FILE NAME="dt_socket.dll" SIZE="20595" CHECKSUM="0x9953B1F5" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" LINK_DATE="02/23/2004 07:23:58" UPTO_LINK_DATE="02/23/2004 07:23:58" />
    <MATCHING_FILE NAME="eula.dll" SIZE="61547" CHECKSUM="0x5D7B76F2" BIN_FILE_VERSION="1.4.2.40" BIN_PRODUCT_VERSION="1.4.2.40" PRODUCT_VERSION="1, 4, 2, 40" FILE_DESCRIPTION="EULA Module" COMPANY_NAME="Sun Microsystems, Inc." PRODUCT_NAME="EULA Module" FILE_VERSION="1, 4, 2, 40" ORIGINAL_FILENAME="EULA.EXE" INTERNAL_NAME="EULA" LEGAL_COPYRIGHT="Copyright 2004" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0x10601" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="1.4.2.40" UPTO_BIN_PRODUCT_VERSION="1.4.2.40" LINK_DATE="02/23/2004 07:44:40" UPTO_LINK_DATE="02/23/2004 07:44:40" VER_LANGUAGE="English (United States) [0x409]" />
    <MATCHING_FILE NAME="fontmanager.dll" SIZE="327811" CHECKSUM="0xB2640BE0" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" LINK_DATE="02/23/2004 07:15:12" UPTO_LINK_DATE="02/23/2004 07:15:12" />
    <MATCHING_FILE NAME="hpi.dll" SIZE="28791" CHECKSUM="0x53D12BF0" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" LINK_DATE="02/23/2004 06:48:59" UPTO_LINK_DATE="02/23/2004 06:48:59" />
    <MATCHING_FILE NAME="hprof.dll" SIZE="49258" CHECKSUM="0xD4D20CB5" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" LINK_DATE="02/23/2004 06:56:40" UPTO_LINK_DATE="02/23/2004 06:56:40" />
    <MATCHING_FILE NAME="ioser12.dll" SIZE="24715" CHECKSUM="0x87528955" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" LINK_DATE="02/23/2004 07:19:02" UPTO_LINK_DATE="02/23/2004 07:19:02" />
    <MATCHING_FILE NAME="jaas_nt.dll" SIZE="20611" CHECKSUM="0xDEC7F851" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" LINK_DATE="02/23/2004 07:21:11" UPTO_LINK_DATE="02/23/2004 07:21:11" />
    <MATCHING_FILE NAME="java.dll" SIZE="102515" CHECKSUM="0x430048F5" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" LINK_DATE="02/23/2004 06:52:13" UPTO_LINK_DATE="02/23/2004 06:52:13" />
    <MATCHING_FILE NAME="java.exe" SIZE="24681" CHECKSUM="0xBBA58998" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" LINK_DATE="02/23/2004 06:52:42" UPTO_LINK_DATE="02/23/2004 06:52:42" />
    <MATCHING_FILE NAME="JavaAccessBridge.dll" SIZE="167936" CHECKSUM="0x8CD46E23" BIN_FILE_VERSION="2.0.5.0" BIN_PRODUCT_VERSION="2.0.5.0" PRODUCT_VERSION="2, 0, 5, 0" FILE_DESCRIPTION="" COMPANY_NAME="Sun Microsystems©" PRODUCT_NAME="" FILE_VERSION="2, 0, 5, 0" ORIGINAL_FILENAME="" INTERNAL_NAME="Java Access Bridge for Windows" LEGAL_COPYRIGHT="Copyright © 2005" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="2.0.5.0" UPTO_BIN_PRODUCT_VERSION="2.0.5.0" LINK_DATE="12/13/2005 21:49:52" UPTO_LINK_DATE="12/13/2005 21:49:52" VER_LANGUAGE="English (United States) [0x409]" />
    <MATCHING_FILE NAME="javaw.exe" SIZE="28779" CHECKSUM="0x38F4D914" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" LINK_DATE="02/23/2004 06:52:45" UPTO_LINK_DATE="02/23/2004 06:52:45" />
    <MATCHING_FILE NAME="jawt.dll" SIZE="20592" CHECKSUM="0x19F4C69C" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" LINK_DATE="02/23/2004 07:20:25" UPTO_LINK_DATE="02/23/2004 07:20:25" />
    <MATCHING_FILE NAME="JAWTAccessBridge.dll" SIZE="32768" CHECKSUM="0xBE0D6CC2" BIN_FILE_VERSION="2.0.5.0" BIN_PRODUCT_VERSION="2.0.5.0" PRODUCT_VERSION="2, 0, 5, 0" FILE_DESCRIPTION="" COMPANY_NAME="Sun Microsystems©" PRODUCT_NAME="" FILE_VERSION="2, 0, 5, 0" ORIGINAL_FILENAME="" INTERNAL_NAME="Java Access Bridge for Windows" LEGAL_COPYRIGHT="Copyright © 2005" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="2.0.5.0" UPTO_BIN_PRODUCT_VERSION="2.0.5.0" LINK_DATE="12/13/2005 21:50:20" UPTO_LINK_DATE="12/13/2005 21:50:20" VER_LANGUAGE="English (United States) [0x409]" />
    <MATCHING_FILE NAME="jcov.dll" SIZE="61544" CHECKSUM="0x8DF4BDEA" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" LINK_DATE="02/23/2004 06:56:55" UPTO_LINK_DATE="02/23/2004 06:56:55" />
    <MATCHING_FILE NAME="JdbcOdbc.dll" SIZE="49278" CHECKSUM="0x1FBFA2DD" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" LINK_DATE="02/23/2004 07:19:53" UPTO_LINK_DATE="02/23/2004 07:19:53" />
    <MATCHING_FILE NAME="jdwp.dll" SIZE="102505" CHECKSUM="0xDC87EF89" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" LINK_DATE="02/23/2004 07:23:23" UPTO_LINK_DATE="02/23/2004 07:23:23" />
    <MATCHING_FILE NAME="jpeg.dll" SIZE="122992" CHECKSUM="0x914959B6" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" LINK_DATE="02/23/2004 07:16:39" UPTO_LINK_DATE="02/23/2004 07:16:39" />
    <MATCHING_FILE NAME="jpicom32.dll" SIZE="82035" CHECKSUM="0x73656165" BIN_FILE_VERSION="1.4.2.40" BIN_PRODUCT_VERSION="1.4.2.40" PRODUCT_VERSION="1, 4, 2, 40" FILE_DESCRIPTION="JPICom Module" COMPANY_NAME="" PRODUCT_NAME="JPICom Module" FILE_VERSION="1, 4, 2, 40" ORIGINAL_FILENAME="JPICom32.DLL" INTERNAL_NAME="JPICom" LEGAL_COPYRIGHT="Copyright 2002" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x21331" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="1.4.2.40" UPTO_BIN_PRODUCT_VERSION="1.4.2.40" LINK_DATE="02/23/2004 07:44:40" UPTO_LINK_DATE="02/23/2004 07:44:40" VER_LANGUAGE="English (United States) [0x409]" />
    <MATCHING_FILE NAME="jpicpl32.exe" SIZE="16501" CHECKSUM="0x2DE50014" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" LINK_DATE="02/23/2004 07:41:22" UPTO_LINK_DATE="02/23/2004 07:41:22" />
    <MATCHING_FILE NAME="jpiexp32.dll" SIZE="94323" CHECKSUM="0x9A3F923A" BIN_FILE_VERSION="1.4.2.40" BIN_PRODUCT_VERSION="1.4.2.40" PRODUCT_VERSION="1, 4, 2, 40" FILE_DESCRIPTION="Java Plug-in for Internet Explorer" COMPANY_NAME="JavaSoft / Sun Microsystems" PRODUCT_NAME="JavaSoft / Sun Microsystems -- Java(TM) Plug-in" FILE_VERSION="1, 4, 2, 40" ORIGINAL_FILENAME="jpiexpl.dll" INTERNAL_NAME="Java Plug-in for Internet Explorer" LEGAL_COPYRIGHT="Copyright © 2002" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0x229B7" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="1.4.2.40" UPTO_BIN_PRODUCT_VERSION="1.4.2.40" LINK_DATE="02/23/2004 07:44:40" UPTO_LINK_DATE="02/23/2004 07:44:40" VER_LANGUAGE="English (United States) [0x409]" />
    <MATCHING_FILE NAME="jpins4.dll" SIZE="28783" CHECKSUM="0x8EBE21E2" MODULE_TYPE="WIN32" PE_CHECKSUM="0xE9E3" LINKER_VERSION="0x0" LINK_DATE="02/23/2004 07:44:40" UPTO_LINK_DATE="02/23/2004 07:44:40" />
    <MATCHING_FILE NAME="jpins6.dll" SIZE="41071" CHECKSUM="0xC84B7483" MODULE_TYPE="WIN32" PE_CHECKSUM="0x17B3F" LINKER_VERSION="0x0" LINK_DATE="02/23/2004 07:44:40" UPTO_LINK_DATE="02/23/2004 07:44:40" />
    <MATCHING_FILE NAME="jpins7.dll" SIZE="45167" CHECKSUM="0x6C20A296" MODULE_TYPE="WIN32" PE_CHECKSUM="0x10318" LINKER_VERSION="0x0" LINK_DATE="02/23/2004 07:44:40" UPTO_LINK_DATE="02/23/2004 07:44:40" />
    <MATCHING_FILE NAME="jpinsp.dll" SIZE="86127" CHECKSUM="0x89FF19DE" BIN_FILE_VERSION="1.4.2.40" BIN_PRODUCT_VERSION="1.4.2.40" PRODUCT_VERSION="1, 4, 2, 40" FILE_DESCRIPTION="Java Plug-in 1.4.2_04 for Netscape Navigator (DLL Helper)" COMPANY_NAME="JavaSoft / Sun Microsystems, Inc." PRODUCT_NAME="Java Plug-in" FILE_VERSION="1, 4, 2, 40" ORIGINAL_FILENAME="JPINSP.dll" INTERNAL_NAME="Java Plug-in" LEGAL_COPYRIGHT="Copyright © 2000" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x20ABB" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="1.4.2.40" UPTO_BIN_PRODUCT_VERSION="1.4.2.40" LINK_DATE="02/23/2004 07:44:40" UPTO_LINK_DATE="02/23/2004 07:44:40" VER_LANGUAGE="English (United States) [0x409]" />
    <MATCHING_FILE NAME="jpishare.dll" SIZE="77939" CHECKSUM="0x5593E581" BIN_FILE_VERSION="1.4.2.40" BIN_PRODUCT_VERSION="1.4.2.40" PRODUCT_VERSION="1, 4, 2, 40" FILE_DESCRIPTION="Java Plug-in Share Module for Win32" COMPANY_NAME="" PRODUCT_NAME="Java Plug-in" FILE_VERSION="1, 4, 2, 40" ORIGINAL_FILENAME="jpishare.dll" INTERNAL_NAME="Java Plug-in Share Module" LEGAL_COPYRIGHT="Copyright 1999" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x19831" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="1.4.2.40" UPTO_BIN_PRODUCT_VERSION="1.4.2.40" LINK_DATE="02/23/2004 07:44:40" UPTO_LINK_DATE="02/23/2004 07:44:40" VER_LANGUAGE="English (United States) [0x409]" />
    <MATCHING_FILE NAME="jsound.dll" SIZE="143480" CHECKSUM="0x2A70C20E" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" LINK_DATE="02/23/2004 07:01:59" UPTO_LINK_DATE="02/23/2004 07:01:59" />
    <MATCHING_FILE NAME="jucheck.exe" SIZE="241777" CHECKSUM="0xEF8851CF" BIN_FILE_VERSION="1.0.0.1" BIN_PRODUCT_VERSION="1.0.0.1" PRODUCT_VERSION="1, 0, 0, 1" FILE_DESCRIPTION="UpdateChecker Module" COMPANY_NAME="" PRODUCT_NAME="UpdateChecker Module" FILE_VERSION="1, 0, 0, 1" ORIGINAL_FILENAME="UpdateChecker.EXE" INTERNAL_NAME="UpdateChecker" LEGAL_COPYRIGHT="Copyright 2002" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="1.0.0.1" UPTO_BIN_PRODUCT_VERSION="1.0.0.1" LINK_DATE="02/23/2004 07:38:02" UPTO_LINK_DATE="02/23/2004 07:38:02" VER_LANGUAGE="English (United States) [0x409]" />
    <MATCHING_FILE NAME="jusched.exe" SIZE="32881" CHECKSUM="0x281222A2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" LINK_DATE="02/23/2004 07:38:19" UPTO_LINK_DATE="02/23/2004 07:38:19" />
    <MATCHING_FILE NAME="keytool.exe" SIZE="28801" CHECKSUM="0xB0D8769E" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" LINK_DATE="02/23/2004 07:05:54" UPTO_LINK_DATE="02/23/2004 07:05:54" />
    <MATCHING_FILE NAME="kinit.exe" SIZE="28797" CHECKSUM="0x48462D1E" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" LINK_DATE="02/23/2004 07:06:09" UPTO_LINK_DATE="02/23/2004 07:06:09" />
    <MATCHING_FILE NAME="klist.exe" SIZE="28797" CHECKSUM="0x48462D1E" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" LINK_DATE="02/23/2004 07:06:11" UPTO_LINK_DATE="02/23/2004 07:06:11" />
    <MATCHING_FILE NAME="ktab.exe" SIZE="28795" CHECKSUM="0x48462D1E" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" LINK_DATE="02/23/2004 07:06:14" UPTO_LINK_DATE="02/23/2004 07:06:14" />
    <MATCHING_FILE NAME="msvcrt.dll" SIZE="266293" CHECKSUM="0x498A2F29" BIN_FILE_VERSION="6.0.8337.0" BIN_PRODUCT_VERSION="6.0.8337.0" PRODUCT_VERSION="6.00.8337.0" FILE_DESCRIPTION="Microsoft (R) C Runtime Library" COMPANY_NAME="Microsoft Corporation" PRODUCT_NAME="Microsoft (R) Visual C++" FILE_VERSION="6.00.8337.0" ORIGINAL_FILENAME="MSVCRT.DLL" INTERNAL_NAME="MSVCRT.DLL" LEGAL_COPYRIGHT="Copyright (C) Microsoft Corp. 1981-1998" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x4D249" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="6.0.8337.0" UPTO_BIN_PRODUCT_VERSION="6.0.8337.0" LINK_DATE="12/04/1998 01:03:22" UPTO_LINK_DATE="12/04/1998 01:03:22" VER_LANGUAGE="English (United States) [0x409]" />
    <MATCHING_FILE NAME="net.dll" SIZE="57455" CHECKSUM="0x936673B" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" LINK_DATE="02/23/2004 06:58:30" UPTO_LINK_DATE="02/23/2004 06:58:30" />
    <MATCHING_FILE NAME="nio.dll" SIZE="32880" CHECKSUM="0xF017F580" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" LINK_DATE="02/23/2004 06:58:53" UPTO_LINK_DATE="02/23/2004 06:58:53" />
    <MATCHING_FILE NAME="NPJava11.dll" SIZE="65647" CHECKSUM="0x47D4B285" BIN_FILE_VERSION="1.4.2.40" BIN_PRODUCT_VERSION="1.4.2.40" PRODUCT_VERSION="1, 4, 2, 40" FILE_DESCRIPTION="Java Plug-in 1.4.2_04 for Netscape Navigator (DLL Helper)" COMPANY_NAME="JavaSoft / Sun Microsystems, Inc." PRODUCT_NAME="Java Plug-in" FILE_VERSION="1, 4, 2, 40" ORIGINAL_FILENAME="NPJava11.dll" INTERNAL_NAME="Java Plug-in" LEGAL_COPYRIGHT="Copyright (c) 2001" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x1E378" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="1.4.2.40" UPTO_BIN_PRODUCT_VERSION="1.4.2.40" LINK_DATE="02/23/2004 07:44:41" UPTO_LINK_DATE="02/23/2004 07:44:41" VER_LANGUAGE="English (United States) [0x409]" />
    <MATCHING_FILE NAME="NPJava12.dll" SIZE="65647" CHECKSUM="0x60150606" BIN_FILE_VERSION="1.4.2.40" BIN_PRODUCT_VERSION="1.4.2.40" PRODUCT_VERSION="1, 4, 2, 40" FILE_DESCRIPTION="Java Plug-in 1.4.2_04 for Netscape Navigator (DLL Helper)" COMPANY_NAME="JavaSoft / Sun Microsystems, Inc." PRODUCT_NAME="Java Plug-in" FILE_VERSION="1, 4, 2, 40" ORIGINAL_FILENAME="NPJava12.dll" INTERNAL_NAME="Java Plug-in" LEGAL_COPYRIGHT="Copyright (c) 2001" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x167C0" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="1.4.2.40" UPTO_BIN_PRODUCT_VERSION="1.4.2.40" LINK_DATE="02/23/2004 07:44:41" UPTO_LINK_DATE="02/23/2004 07:44:41" VER_LANGUAGE="English (United States) [0x409]" />
    <MATCHING_FILE NAME="NPJava13.dll" SIZE="65647" CHECKSUM="0x8A155CB8" BIN_FILE_VERSION="1.4.2.40" BIN_PRODUCT_VERSION="1.4.2.40" PRODUCT_VERSION="1, 4, 2, 40" FILE_DESCRIPTION="Java Plug-in 1.4.2_04 for Netscape Navigator (DLL Helper)" COMPANY_NAME="JavaSoft / Sun Microsystems, Inc." PRODUCT_NAME="Java Plug-in" FILE_VERSION="1, 4, 2, 40" ORIGINAL_FILENAME="NPJava13.dll" INTERNAL_NAME="Java Plug-in" LEGAL_COPYRIGHT="Copyright (c) 2001" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x19ADF" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="1.4.2.40" UPTO_BIN_PRODUCT_VERSION="1.4.2.40" LINK_DATE="02/23/2004 07:44:41" UPTO_LINK_DATE="02/23/2004 07:44:41" VER_LANGUAGE="English (United States) [0x409]" />
    <MATCHING_FILE NAME="NPJava14.dll" SIZE="65647" CHECKSUM="0x2D559CB6" BIN_FILE_VERSION="1.4.2.40" BIN_PRODUCT_VERSION="1.4.2.40" PRODUCT_VERSION="1, 4, 2, 40" FILE_DESCRIPTION="Java Plug-in 1.4.2_04 for Netscape Navigator (DLL Helper)" COMPANY_NAME="JavaSoft / Sun Microsystems, Inc." PRODUCT_NAME="Java Plug-in" FILE_VERSION="1, 4, 2, 40" ORIGINAL_FILENAME="NPJava14.dll" INTERNAL_NAME="Java Plug-in" LEGAL_COPYRIGHT="Copyright (c) 2001" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x14890" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="1.4.2.40" UPTO_BIN_PRODUCT_VERSION="1.4.2.40" LINK_DATE="02/23/2004 07:44:41" UPTO_LINK_DATE="02/23/2004 07:44:41" VER_LANGUAGE="English (United States) [0x409]" />
    <MATCHING_FILE NAME="NPJava32.dll" SIZE="65647" CHECKSUM="0xE55D102" BIN_FILE_VERSION="1.4.2.40" BIN_PRODUCT_VERSION="1.4.2.40" PRODUCT_VERSION="1, 4, 2, 40" FILE_DESCRIPTION="Java Plug-in 1.4.2_04 for Netscape Navigator (DLL Helper)" COMPANY_NAME="JavaSoft / Sun Microsystems, Inc." PRODUCT_NAME="Java Plug-in" FILE_VERSION="1, 4, 2, 40" ORIGINAL_FILENAME="NPJava32.dll" INTERNAL_NAME="Java Plug-in" LEGAL_COPYRIGHT="Copyright (c) 2001" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x1FAEC" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="1.4.2.40" UPTO_BIN_PRODUCT_VERSION="1.4.2.40" LINK_DATE="02/23/2004 07:44:41" UPTO_LINK_DATE="02/23/2004 07:44:41" VER_LANGUAGE="English (United States) [0x409]" />
    <MATCHING_FILE NAME="NPJPI142_04.dll" SIZE="65650" CHECKSUM="0xEB161C45" BIN_FILE_VERSION="1.4.2.40" BIN_PRODUCT_VERSION="1.4.2.40" PRODUCT_VERSION="1, 4, 2, 40" FILE_DESCRIPTION="Java Plug-in 1.4.2_04 for Netscape Navigator (DLL Helper)" COMPANY_NAME="JavaSoft / Sun Microsystems, Inc." PRODUCT_NAME="Java Plug-in" FILE_VERSION="1, 4, 2, 40" ORIGINAL_FILENAME="NPJPI&quot;142_04&quot;.dll" INTERNAL_NAME="Java Plug-in" LEGAL_COPYRIGHT="Copyright (c) 2001" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x14DBE" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="1.4.2.40" UPTO_BIN_PRODUCT_VERSION="1.4.2.40" LINK_DATE="02/23/2004 07:44:41" UPTO_LINK_DATE="02/23/2004 07:44:41" VER_LANGUAGE="English (United States) [0x409]" />
    <MATCHING_FILE NAME="NPOJI610.dll" SIZE="65647" CHECKSUM="0x4B96463F" BIN_FILE_VERSION="1.4.2.40" BIN_PRODUCT_VERSION="1.4.2.40" PRODUCT_VERSION="1, 4, 2, 40" FILE_DESCRIPTION="Java Plug-in 1.4.2_04 for Netscape Navigator (DLL Helper)" COMPANY_NAME="JavaSoft / Sun Microsystems, Inc." PRODUCT_NAME="Java Plug-in" FILE_VERSION="1, 4, 2, 40" ORIGINAL_FILENAME="NPOJI610.dll" INTERNAL_NAME="Java Plug-in" LEGAL_COPYRIGHT="Copyright ¨ 2001" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x130F8" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="1.4.2.40" UPTO_BIN_PRODUCT_VERSION="1.4.2.40" LINK_DATE="02/23/2004 07:44:41" UPTO_LINK_DATE="02/23/2004 07:44:41" VER_LANGUAGE="English (United States) [0x409]" />
    <MATCHING_FILE NAME="orbd.exe" SIZE="28820" CHECKSUM="0x7A2E72A3" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" LINK_DATE="02/23/2004 07:22:26" UPTO_LINK_DATE="02/23/2004 07:22:26" />
    <MATCHING_FILE NAME="policytool.exe" SIZE="28807" CHECKSUM="0x6DDA7373" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" LINK_DATE="02/23/2004 07:06:06" UPTO_LINK_DATE="02/23/2004 07:06:06" />
    <MATCHING_FILE NAME="RegUtils.dll" SIZE="110707" CHECKSUM="0x83993729" MODULE_TYPE="WIN32" PE_CHECKSUM="0x1C94F" LINKER_VERSION="0x0" LINK_DATE="02/23/2004 07:44:41" UPTO_LINK_DATE="02/23/2004 07:44:41" />
    <MATCHING_FILE NAME="rmi.dll" SIZE="20590" CHECKSUM="0x4960AF7D" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" LINK_DATE="02/23/2004 07:19:20" UPTO_LINK_DATE="02/23/2004 07:19:20" />
    <MATCHING_FILE NAME="rmid.exe" SIZE="28795" CHECKSUM="0xB0D8769E" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" LINK_DATE="02/23/2004 07:19:37" UPTO_LINK_DATE="02/23/2004 07:19:37" />
    <MATCHING_FILE NAME="rmiregistry.exe" SIZE="28807" CHECKSUM="0x6DDA7373" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" LINK_DATE="02/23/2004 07:19:27" UPTO_LINK_DATE="02/23/2004 07:19:27" />
    <MATCHING_FILE NAME="servertool.exe" SIZE="28832" CHECKSUM="0xCB9E2EC5" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" LINK_DATE="02/23/2004 07:22:29" UPTO_LINK_DATE="02/23/2004 07:22:29" />
    <MATCHING_FILE NAME="tnameserv.exe" SIZE="28822" CHECKSUM="0xE7411E8B" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" LINK_DATE="02/23/2004 07:22:37" UPTO_LINK_DATE="02/23/2004 07:22:37" />
    <MATCHING_FILE NAME="verify.dll" SIZE="57453" CHECKSUM="0x3E0877A9" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" LINK_DATE="02/23/2004 06:49:18" UPTO_LINK_DATE="02/23/2004 06:49:18" />
    <MATCHING_FILE NAME="w2k_lsa_auth.dll" SIZE="20563" CHECKSUM="0x9952E99A" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" LINK_DATE="01/11/2001 16:36:14" UPTO_LINK_DATE="01/11/2001 16:36:14" />
    <MATCHING_FILE NAME="WindowsAccessBridge.dll" SIZE="90112" CHECKSUM="0xF3038256" BIN_FILE_VERSION="2.0.5.0" BIN_PRODUCT_VERSION="2.0.5.0" PRODUCT_VERSION="2, 0, 5, 0" FILE_DESCRIPTION="" COMPANY_NAME="Sun Microsystems©" PRODUCT_NAME="" FILE_VERSION="2, 0, 5, 0" ORIGINAL_FILENAME="" INTERNAL_NAME="Java Access Bridge for Windows" LEGAL_COPYRIGHT="Copyright © 2005" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="2.0.5.0" UPTO_BIN_PRODUCT_VERSION="2.0.5.0" LINK_DATE="12/13/2005 21:50:00" UPTO_LINK_DATE="12/13/2005 21:50:00" VER_LANGUAGE="English (United States) [0x409]" />
    <MATCHING_FILE NAME="zip.dll" SIZE="53364" CHECKSUM="0x50DD894B" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" LINK_DATE="02/23/2004 06:52:54" UPTO_LINK_DATE="02/23/2004 06:52:54" />
    <MATCHING_FILE NAME="client\jvm.dll" SIZE="1212546" CHECKSUM="0x728FE5C5" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" LINK_DATE="02/23/2004 06:40:16" UPTO_LINK_DATE="02/23/2004 06:40:16" />
    </EXE>
    <EXE NAME="easfa.dll" FILTER="GRABMI_FILTER_THISFILEONLY">
    <MATCHING_FILE NAME="easfa.dll" SIZE="303104" CHECKSUM="0xAB6E186B" BIN_FILE_VERSION="6.0.0.7" BIN_PRODUCT_VERSION="6.0.0.7" PRODUCT_VERSION="6, 0, 0, 7" FILE_DESCRIPTION="File Archiving Solution - Shell Extension" COMPANY_NAME="ZANTAZ Inc." PRODUCT_NAME="FAS" FILE_VERSION="6, 0, 0, 7" ORIGINAL_FILENAME="easfa.dll" INTERNAL_NAME="easfa.dll" LEGAL_COPYRIGHT="Copyright (c) ZANTAZ Inc. All rights reserved." VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x5853D" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="6.0.0.7" UPTO_BIN_PRODUCT_VERSION="6.0.0.7" LINK_DATE="03/14/2007 19:50:23" UPTO_LINK_DATE="03/14/2007 19:50:23" VER_LANGUAGE="English (United States) [0x409]" />
    </EXE>
    <EXE NAME="kernel32.dll" FILTER="GRABMI_FILTER_THISFILEONLY">
    <MATCHING_FILE NAME="kernel32.dll" SIZE="984576" CHECKSUM="0xF0B331F6" BIN_FILE_VERSION="5.1.2600.3119" BIN_PRODUCT_VERSION="5.1.2600.3119" PRODUCT_VERSION="5.1.2600.3119" FILE_DESCRIPTION="Windows NT BASE API Client DLL" COMPANY_NAME="Microsoft Corporation" PRODUCT_NAME="Microsoft® Windows® Operating System" FILE_VERSION="5.1.2600.3119 (xpsp_sp2_gdr.070416-1301)" ORIGINAL_FILENAME="kernel32" INTERNAL_NAME="kernel32" LEGAL_COPYRIGHT="© Microsoft Corporation. All rights reserved." VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0xF9293" LINKER_VERSION="0x50001" UPTO_BIN_FILE_VERSION="5.1.2600.3119" UPTO_BIN_PRODUCT_VERSION="5.1.2600.3119" LINK_DATE="04/16/2007 15:52:53" UPTO_LINK_DATE="04/16/2007 15:52:53" VER_LANGUAGE="English (United States) [0x409]" />
    </EXE>
    </DATABASE>
    I had installed Java 1.6.0b105 and Java SE Runtime Environment 6. I removed both and re-installed Java SE 6 update 4 (build 1.6.0_04-b12) but this made no difference.
    I have McAfee installed and disabled it's services still no joy.
    Please could someone suggest a solution to prevent this error?
    Thanks in advance
    Jan

    Installing from a CD or from a download? It may be corrupt.
    I suggest you compare the checksum of the downloaded file with the checksum as listed on the download page.
    The installer is supposed to use its own JRE, so it should not use your installed one.

  • How do I install Sun ONE ASTAware SD w/o javaw.exe error?

    I have been trying to execute the Sun ONE Starter Kit successfully for a month now. I purchased the Starter Kit on CD-ROMs. I run Windows 2000, SP2 with all critical and recommended repairs, on a Pentium 4 board installed in a custom computer--that is, with the best of all hardware components. Every time I install ASTAware SearchDisc and then try to execute the search function, I receive the following error message, "javaw.exe has generated errors and will be closed by Windows. You will need to restart the program." I have tried every workaround offered in the forum and unfortunately none work. Would you kindly provide ASAP a step-by-step guide on how to resolve the error? Please leave nothing to the imagination, such as, when you state that the CLASSPATH must be set, please explain where the environmental variable must be set and how to set it (please refer to http://forum.sun.com/thread.jsp?forum=78&thread=8700; Topic: CD 1, Search Engine Installation Problem.
    Operation of the ASTAware SearchDisc is especially important to me. I have submitted an invited prospectus for a business executive's book on component-based software engineering and software reuse. I intend to use Sun One to present simple examples of how software component teams work and, thus, achieve higher returns-on-investment than most current techniques. Yet, the state of Sun ONE's search engine is the very reason business executives are reluctant to adopt new technologies. When they see too many workarounds for an obvious defect in an application, business executives are reticient to spend great sums of money to transition to component-based technologies and software reuse.
    Again, please help as soon as possible. Thanks.

    thanks for that, according to this it should be run like
    /path/to/build.sh build single netinstall
    from inside the chroot
    posting this for my own reference and in case it helps others, will mark as solved
    thanks again for your help
    Last edited by gav989 (2012-02-12 10:58:04)

  • Javaw.exe - Application Error when installing Oracle 10.2.0.1.0

    I hope I am in the correct area. Please forgive me if I have wandered into the wrong space, but has anyone seen this particular issue and what did you do to get around it?
    v/r
    George
    javaw.exe - Application Error
    The exception unknown software exception (0xc000000d) occurred in the application at location 0x08f2c799.
    Click on OK to terminate the program
    Click on CANCEL to debug the program.

    Hello
    no, this is not the right area, you should post into oracle database forum, this one is for Oracle Collaboration Suite.
    Your problem seems to be windows-related, if you want some help tou should try this on a standard windows installation, then if it still does not work post your configuration (in the right forum)

  • ASDM with javaw.exe process 90% CPU usage

    /* Style Definitions */
    table.MsoNormalTable
    {mso-style-name:"Table Normal";
    mso-tstyle-rowband-size:0;
    mso-tstyle-colband-size:0;
    mso-style-noshow:yes;
    mso-style-priority:99;
    mso-style-parent:"";
    mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
    mso-para-margin:0cm;
    mso-para-margin-bottom:.0001pt;
    mso-pagination:widow-orphan;
    font-size:11.0pt;
    font-family:"Calibri","sans-serif";
    mso-ascii-font-family:Calibri;
    mso-ascii-theme-font:minor-latin;
    mso-hansi-font-family:Calibri;
    mso-hansi-theme-font:minor-latin;
    mso-bidi-font-family:"Times New Roman";
    mso-bidi-theme-font:minor-bidi;
    mso-fareast-language:EN-US;}
    Dear all,
    I had ASDM 6.2 with ASA 8.2 installed on my pc (windows 7 32 bit). When I launch ASDM process go to 80-90% and my RAM go to 2.5G. when I am looking on the process on the task manager there is a process “javaw.exe” linked with ASDM.
    I have done a lot of search on the google/SUN site and forums but I didn’t found anything to resolve this issue.
    Have someone had or have some issue with ASDM? Or have you the solution for this issue?
    Thanks a lot
    Note: I upgraded my ASDM to the latest version 6.4 but still have same issue.

    Hi Jazaib,
    As other said, you need to find out what was changed. In additional to environment/load changes, extra load could be triggered by suboptimal execution plans due to parameter sniffing and/or stale statistics. For example, you can have the situation when frequently
    executed query was recompiled using atypical parameter set and cached plan leads to much heavier I/O CPU activity.
    Other factor that often lead to CPU load is bad T-SQL code (multistatement UDF, imperative code, cursors) so check your application.
    You can also run the script below, which returns you the information on most CPU intensive queries in scope of the cached plans. Alternatively, you can setup XEvent/SQL Trace sessions capturing statements with cpu_time exceeding some duration.
    SELECT TOP 50
    SUBSTRING(qt.TEXT, (qs.statement_start_offset/2)+1,
    CASE qs.statement_end_offset
    WHEN -1 THEN DATALENGTH(qt.TEXT)
    ELSE qs.statement_end_offset
    END - qs.statement_start_offset)/2)+1) as SQL,
    qs.execution_count,
    (qs.total_logical_reads + qs.total_logical_writes) / qs.execution_count as [Avg IO],
    qp.query_plan,
    qs.total_logical_reads, qs.last_logical_reads,
    qs.total_logical_writes, qs.last_logical_writes,
    qs.total_worker_time / qs.execution_count as [Avg CPU],
    qs.total_worker_time,
    qs.last_worker_time,
    qs.total_elapsed_time/1000 total_elapsed_time_in_ms,
    qs.last_elapsed_time/1000 last_elapsed_time_in_ms,
    qs.last_execution_time
    from
    sys.dm_exec_query_stats qs with (nolock)
    cross apply sys.dm_exec_sql_text(qs.sql_handle) qt
    outer apply sys.dm_exec_query_plan(qs.plan_handle) qp
    order by -- or vy qs.total_worker_time desc
    [Avg CPU] desc
    option (recompile)
    Thank you!
    Dmitri V. Korotkevitch (MVP, MCM, MCPD)
    My blog: http://aboutsqlserver.com

  • Java.io.File give incorrect chinese filenam when using javaw.exe

    I am running Chinese Win2000 Pro (SP2) with jre1.3.1 installed. If I use javaw.exe to run my application, java.io.File does not give the correct filename for chinese filename when I use it to run through a directory, though all English filenames show correctly.
    When the same program is run by java.exe instead of javaw.exe, the program runs with no problem and all chinese name are obtained successfully from java.io.File. Does anyone know the reason behind this ?
    I need to use javaw.exe since I am invoking Java from VC++. I don't want a black command prompt window to pop up behind my java application. Please help.

    Hi,
    I am sorry for not replying to ur query. Infact I am facing my own problem and after reading your problem I thought you could help me out in it because you are already successful in invoking java from VC++.
    My problem is that I want to invoke java class from VC++ in such a way that I want to capture the stdout of java class that I invoke from VC++ and use it in VC++. Let me explain first thing first. I am not able to invoke java class from withing vc++. I have looked at JNI help on SUN site but it is giving me lots of compilation error when I include JNI.h in my VC++ program. If you could help me out in this problem, it would be great.
    Thanks in advance.
    Regards
    Rakesh

  • Need javaw.exe for mac os x

    I'm trying to install an application on my mac called Jam that uses javaw.exe from jre 1.6.0 or later. I have that file (and the jre) that I copied from my windows machine but obviously does not work. Is there a comparable program that I can use on my mac or can I get this executable for a mac somewhere on the web? Thanks a lot for any advice!
    :)

    i guess that you didn't even bother to google for the anwser...anyway:
    [Download Java 6 for MacOS X|http://developer.apple.com/java/download/]
    regards

  • Javaw.exe error

    I get this message when I try to install a sofware from Bellsouth DSL access.
    javaw.exe has generated error and will be closed by Windows. You will need to restart the program.
    This error is given also when trying to unistall this program.
    Please help. Im not trying to do anything with java but it gives me errors.
    I downloaded a new version from your website but still gives me the same errors.
    Thank you

    Call BellSouth support. This is a forum for Java programming, not for BellSouth DSL tech support.

  • Javaws.exe error in xi3.0 urgent

    Hi masters,
    Iam trying to open sxmb_ifr from abap stack the IR /ID and SLD /RWB screen opens.when i select IR/IR iam getting javaws.exe error.Pls suggest me .Iam facing this problem since one and half year.But cant able to troubleshoot.
    Regards,
    Winston.

    Hi Pinkle,
    I tried with j2sdk1.4.2_12 and 1.4.2_16 and reinstalled manytimes but the error is not rectified in XI 3.0 and PI 7.0.
    Regards,
    Winston.

  • Getting the end point to end point connections paths that exist from Switch Exe

    Can I query the Switch Exe data base and get a list of the existing paths that Switch EXE has connected?
    I have a debug app that reads the channel names (via a property node) and present them to the operator to manually connect and disconnect paths using the end points. I would like to have an indicator showing the current paths that are connected and I was hoping to be able to get that from Switch Exe without me having to add code to keep track of it myself.
    The goal is to be able to click on any existing path to disconnect it. 
    I do query the switch cards and display the actual relays that are closed, but that is hard to relate that to what channels that are connected when we have 8 matrix cards all interconnected.
    Thanks
    Omar
    Omar

    Hi Omar,
    Try using something like the example below that incorporates an array to check every connection.  If the path is found to exist, then you could add that combination to an array that is displayed on the front panel.  Also see this knowledge base article about the known issue with the Find Routes VI.  Use the VI from the bottom of the page in place of the Find Routes from the palette.  Hopefully this helps!
    Regards,
    h_baker
    National Instruments
    Applications Engineer
    Digital Multimeter Resources

  • Runtime.getFreeMemory -relatively- static, javaw.exe growing.

    Hello. I have a J2SE app that I think it is leaking memory. It is mainly a GUI that connects to a DB. Thing is, if I repeatedly call the method getFreeMemory() from this app's runtime, it stays around the same value. Now, if I check the javaw.exe process in Windows' Task Manager, it keeps growing and growing.
    So, my question is: which of those two values are usually taken as the real memory usage of an app?
    Thanks!

    Look at total memory.
    Then check you are closing your Statements and ResultSets in finally blocks.

  • FlexBuilder error - javaw.exe - No Disk - help!

    Hi I havejust installed Adobe Flex 3.0 - downloaded the trial version from Abobe.com.
    I have just build a small application, and whenver I try to turn it I get the following error:
    "javaw.exe - No Disk: "There is no disk in the drive. Please insert a disk into drive E:."
    I have java installed on my PC - the java runtime which includes javaw.exe.
    It seems that Flex cannot find it?
    All help appreaciated.
    Thanks
    Mike

    Hi Mike,
    I've come across this....
    Seems to be related to any mass storage devices you have attached to your machine, especially things like x-into-1 card readers etc. but heard reports of external hard drives as well.
    Try removing any external hard drives, and disable all card readers and restart FB and try that. Once you have it up and running, you can usually add the devices back again.
    Cheers
    Ian

Maybe you are looking for

  • Help manually adding songs

    I am on IPhone 5 iOS 7.02 since updating to iOS7 and ITunes 11.1.1.11, I cannot seem to get songs that I have manually added (via converting audio to mp3) into my iPhone.  I can add it into my Itunes library and it plays fine, but no matter what I do

  • Storage increase not being recognized by iTunes for movie download

    I purchased additional storage bc the videos I was trying to download could not complete however now when I try to resume downloading the videos I am still getting errors saying that I do not have enough storage even though settings shows more than e

  • How to clear out old WWV_FLOW_FILES

    I'm updating an application that does a file upload into wwv_flow_files and then puts the data into a collection which is maintained thru a series of forms. The application has DELETE_ALL_COLLECTIONS to handle the clearing out of the collection and o

  • Replace period with white space

    I am trying to replace a period in a string with a white space. It does not want to work with a period but works just fine with a comma! Please can somebody tell me what I am doing wrong. This is the code that I am using: System.out.println("Unicode:

  • How to reverse Manually Posted COPA documents?

    Hi Gurus, We have posted some doucments in COPA through KE21N.  Some of the documents are not correct, hence distorting all figures in reports. Please guide, how to reverse / change them? Regards, Amir