Error signature ModName: jvm.dll

Hello,
I have a Java application that ran fine on my desktop PC (Windows), where I coded and compiled my program.
But when I copied my program to another PC and ran it, I got this error message :
"MyApp.exe has encountered a problem and needs to close. We are sorry for the inconvenience."
When I clicked on "click here" to see the error report, I saw :
Error signature
AppName: MyApp.exe AppVer: 0.0.0.0 ModName: jvm.dll
ModVer: 14.0.0.16 Offset: 000fee15
I wonder if someone could please tell me how to fix this problem?
Thank you and Best Regards,
Akino

user8708553 wrote:
I have a Java application that ran fine on my desktop PC (Windows), where I coded and compiled my program.
But when I copied my program to another PC and ran it, I got this error message :I also notice that the app is an exe. Java apps are usually distributed as jars, so it's possible that whatever utility you used to "execify" your app is incompatible with the new machine.
Winston

Similar Messages

  • JVM DLL error : faulting module jvm.dll, version 27.6.5.32,

    Hi,
    I'm running WL in windows server and beasvc.exe is failing with this message.
    "Faulting application beasvc.exe, version 1.0.3.9, faulting module jvm.dll, version 27.6.5.32, fault address 0x0001e194"
    Any help please?
    thanks,
    Kam

    Hi,
    I'm running WL in windows server and beasvc.exe is failing with this message.
    "Faulting application beasvc.exe, version 1.0.3.9, faulting module jvm.dll, version 27.6.5.32, fault address 0x0001e194"
    Any help please?
    thanks,
    Kam

  • Newbie Topic - compiling errors and jvm.dll missing

    Okay, we're starting at square .1 here. I'm trying to compile the ClickMe.java in the tutorial for newbies like myself. I know how to compile from the command line, etc., but I get an 2 errors. Seems to be saying line 6, cannot resolve symbol and line 28.
    - - - - code below - - - - - -
    import java.applet.Applet;
    import java.awt.*;
    import java.awt.event.*;
    public class ClickMe extends Applet implements MouseListener {
    private Spot spot = null;
    private static final int RADIUS = 7;
    public void init() {
    addMouseListener(this);
    public void paint(Graphics g) {
    // draw a black border and a white background
    g.setColor(Color.white);
    g.fillRect(0, 0, getSize().width - 1, getSize().height - 1);
    g.setColor(Color.black);
    g.drawRect(0, 0, getSize().width - 1, getSize().height - 1);
    // draw the spot
    g.setColor(Color.red);
    if (spot != null) {
    g.fillOval(spot.x - RADIUS,
    spot.y - RADIUS,
    RADIUS * 2, RADIUS * 2);
    public void mousePressed(MouseEvent event) {
    if (spot == null) {
    spot = new Spot(RADIUS);
    spot.x = event.getX();
    spot.y = event.getY();
    repaint();
    public void mouseClicked(MouseEvent event) {}
    public void mouseReleased(MouseEvent event) {}
    public void mouseEntered(MouseEvent event) {}
    public void mouseExited(MouseEvent event) {}
    - - - - - - end ClickMe.java code - - - - -
    I thought maybe it was b/c the Spot was capitalized, but I changed that to l/c and that didn't help. This code is, of course, taken right off of this page:
    http://java.sun.com/docs/books/tutorial/java/concepts/practical.html
    The other thing that's happening, is that when I try to run the NetBeans IDE 3.6, I get an error "Cannot load jvm.dll." I know there are jvm.dll's on this machine, but maybe they're in the wrong directory. I haven't messed with anything, just d-loaded the whole j2se SDK 1.4.1 and i'm already snafu'd. But then, I'm a newbie, so go ahead make fun. But, if you can, offer advice.
    thx in advance!

    I seem to be compiling right, b/c I was able to compile the classic HelloWorld.java ok and I can compile the spot.java file ok. I see what looks to be a valid spot.class file after I compile. If you're really bored, I could describe exactly how I'm launching the cmd.exe and how I point successfully to the javac.exe, but, newbie that I am, can we just go on faith that I'm doing that step right? And I also tried re-compiling the Spot.java file first, trashing the original ClickMe.java file so that everything was sequential. I'm wondering if this has something to do with the IDE & that jvm.dll out of whack.....
    As for the Netbeans IDE, I'm going to see if I can reinstall that separately. The whole SDK maybe didn't unpack correctly, who knows.
    But thanks for responding......

  • Can't load jvm.dll in Vista

    I have a bizarre problem with JDK1.6.0_03 and Windows Vista. I am trying to compile and run a C program that calls a Java method, using the invocation API. In the past, this worked like a charm, provided I had c:\Program Files\Java\jdk1.6.0_03\jre\bin\client on the PATH.
    It no longer works. I get an error message that jvm.dll was not found and that Windows will notify me if it finds a solution to my problem. (I am not holding my breath.)
    I then try to load the library manually:
       HINSTANCE h = LoadLibrary("c:\\Program Files\\Java\\jdk1.6.0_03\\jre\\bin\\client\\jvm.dll");
       if (h == NULL)
           printf("Can't load library\n");
           exit(1);
         }I get the exact same error message.
    Did something break in Vista, or do I need to look elsewhere for a stupid configuration error?
    Thanks,
    Cay Horstmann

    Just in case some other poor soul gets to this, here is the way to implement the invocation under Windows Vista:
    #include <jni.h>
    #include <stdlib.h>
    #include <windows.h>
    typedef jint (JNICALL *CreateJavaVM_t)(JavaVM **, JNIEnv **, JavaVMInitArgs *);
    int main()
       JavaVMOption options[2];
       JavaVMInitArgs vm_args;
       JavaVM *jvm;
       JNIEnv *env;
       long status;
       jclass class_Welcome;
       jclass class_String;
       jobjectArray args;
       jmethodID id_main;
       HINSTANCE h1, h2;
       CreateJavaVM_t createJavaVM;
       h1 = LoadLibrary("c:\\Program Files\\Java\\jdk1.6.0_03\\jre\\bin\\msvcr71.dll");
       if (h1 == NULL)
          printf("Can't load library msvcr71.dll\n");
          exit(1);
       h2 = LoadLibrary("c:\\Program Files\\Java\\jdk1.6.0_03\\jre\\bin\\client\\jvm.dll");
       if (h2 == NULL)
          printf("Can't load library jvm.dll\n");
          exit(1);
       options[0].optionString = "-Djava.class.path=.";
       memset(&vm_args, 0, sizeof(vm_args));
       vm_args.version = JNI_VERSION_1_2;
       vm_args.nOptions = 1;
       vm_args.options = options;
       createJavaVM = (CreateJavaVM_t) GetProcAddress(h2, "JNI_CreateJavaVM");
       status = (*createJavaVM)(&jvm, &env, &vm_args);
       if (status == JNI_ERR)
          printf("Error creating VM\n");
          return 1;
       class_Welcome = (*env)->FindClass(env, "Welcome");
       id_main = (*env)->GetStaticMethodID(env, class_Welcome, "main", "([Ljava/lang/String;)V");
       class_String = (*env)->FindClass(env, "java/lang/String");
       args = (*env)->NewObjectArray(env, 0, class_String, NULL);
       (*env)->CallStaticVoidMethod(env, class_Welcome, id_main, args);
       (*jvm)->DestroyJavaVM(jvm);
       return 0;
    }Compile with
    gcc -g -mno-cygwin -D __int64="long long" -I /cygdrive/c/Program\ Files/Java/jdk1.6.0_03/include/ -I /cygdrive/c/Program\ Files/Java/jdk1.6.0_03/include/win32/ -o InvocationTest InvocationTest.c Of course, in a real application, you'll want to dynamically locate the Java directory; look at launcher/java_md.c inside src.zip for inspiration.

  • When I open iTunes, I receive an error that reads "iTunes has encountered a problem and needs to close.  Sorry for the convenience."  When I click to see the error, it reads "AppName: itunes.exe      AppVer: 10.5.2.11      ModName: msvcr80.dll"  Why ?

      When I open iTunes, I receive an error that reads "iTunes has encountered a problem and needs to close.  Sorry for the convenience."  When I click to see the error, it reads "AppName: itunes.exe  AppVer: 10.5.2.11  ModName: msvcr80.dll"  Why ?  I am overly frustrated.  Please help.  Not exactly sure which operating system I have.  It is a dell laptop with xp.
    AppName: itunes.exe AppVer: 10.5.2.11 ModName: msvcr80.dll
    ModVer: 8.0.50727.6195 Offset: 00026b72
       AppName: itunes.exe AppVer: 10.5.2.11 ModName: msvcr80.dll
    ModVer: 8.0.50727.6195 Offset: 00026b72

    Well I was able to successfully revert back to iTunes8. Here's my steps:
    1. In Add/Remove Programs I deleted all Apple products (iTunes, QuickTime, Safari, Bonjour, etc.)
    2. I then check C:\Program Files\ and made sure all folders were deleted (QuickTime, etc.)
    3. I then ran a Registry Cleaner program to make sure all entries from Apple products were removed.
    4. I then rebooted my PC
    5. I then downloaded iTunes8.0.2 from here: http://www.apple.com/downloads/macosx/apple/ipod_itunes/itunes802forwindows.html
    6. After it installed it said it could use my iTunes library file because it was created with a newer version. So I re-created my library by following these steps: http://support.apple.com/kb/HT1451
    It took some time but iTunes is now back up and running. And I have all my playlists, etc. I haven't tried to sync anything yet. I'm just thrilled to have my iTunes back!

  • Error while installing JRE 6 update 6: jvm.dll error

    Hello, I am just a normal user of Java, I am no programmer but knew of nowhere else to post this. While installing the latest Java at the period where it says "Registering Java Runtime Environment" an error pops up saying "Error: no 'client' JVM at C:\Program Files\Java\jre 1.6_._._\bin\client\jvm.dll". This error appears everytime I try to install Java. I have tried deleting the deployment.properties file, disabling any malware/virus blockers, I have made sure each install is a clean one, and while watching the ...\bin\client folder, I see that near the beginning of the install it makes a jvm.dll, but when it gets to the "applying patches" part of the install it changes the jvm.dll to a RT~~~ temporary file, but by the time it reaches the end of the install it never changes it back to jvm.dll. I have tried manually renaming it, and putting a working jvm.dll in the folder from another computer; all to no avail. I have also tried installing older versions of Java. I don't know what else to do. I am running Windows Vista SP1, and Java used to work, but I tried to update from 1.6 update 5 to 1.6 update 6, and the problems began. Any and all help would be greatly appreciated.

    welcome to SDN, could you please paste the detailed installation log? we cant help you until you provide detailed log.
    cheers,
    -Sunil

  • Error: no `server' JVM at `D:\jdk1.3\jre\bin\server\jvm.dll'

    I am running WLCS 3.2 with WLS 5.1 & SP6 on an NT 4.0 system and the
    java -version gives this output:
    D:\WebLogicCommerceServer3.2>java -version
    java version "1.3.0"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.0-C)
    Java HotSpot(TM) Client VM (build 1.3.0-C, mixed mode)
    When I initiate WLCS using the startCommerce.bat file it complains this way:
    Error: no `server' JVM at `D:\jdk1.3\jre\bin\server\jvm.dll'
    So my question is what did I forget to do when I moved from JDK1.2.2 to JDK1.3?
    This is probably an easy fix but it's late in the day and my brain
    turned off a few hours ago so I'm gratefully asking here in the newsgroup.
    Thanks in advance!
    Hugo Penafiel
    marchFIRST

    I think the script starts JVM with -server option and you do not
    have HotSpot server installed. Change -server to -hotspot or remove
    it altogether.
    Hugo <[email protected]> wrote:
    I am running WLCS 3.2 with WLS 5.1 & SP6 on an NT 4.0 system and the
    java -version gives this output:
    D:\WebLogicCommerceServer3.2>java -version
    java version "1.3.0"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.0-C)
    Java HotSpot(TM) Client VM (build 1.3.0-C, mixed mode)
    When I initiate WLCS using the startCommerce.bat file it complains this way:
    Error: no `server' JVM at `D:\jdk1.3\jre\bin\server\jvm.dll'
    So my question is what did I forget to do when I moved from JDK1.2.2 to JDK1.3?
    This is probably an easy fix but it's late in the day and my brain
    turned off a few hours ago so I'm gratefully asking here in the newsgroup.
    Thanks in advance!
    Hugo Penafiel
    marchFIRSTDimitri

  • Error loading jvm.dll - urgent!!

    Hi,
    When I try to compile using javac, I get an error as stated below:
    Error loading: y:\sys\nt\j2sdk-1_3_1\jre\bin\hotspot\jvm.dll
    What am I missing?
    Thanks

    check if jvm.dll exists in y:\sys\nt\j2sdk-1_3_1\jre\bin\hotspot. May not be a good solution but try to uninstall and re-install j2sdk. Also check ur CLASSPATH settings
    Vinay

  • Jvm.dll error; Java will not open from control panel

    Hi,
    I am not too familiar with Java so bear with me. When loading some pages in I.E., they crash and I get an error message asking to send the error info to Microsoft. It mentions jvm.dll...also, I tried to open Java icon in control panel, but it will not open. I tried going to Sun home page, but it crashes with a few seconds. Help!!
    Thanks a lot!!

    Try going to this page and follow instructions: http://www.java.com

  • [javac] Error loading: C:\bea\jdk1.6.0_24\jre\bin\client\jvm.dll

    Hi,
    I was curious about the following error:
    [javac] Error loading: C:\bea\jdk1.6.0_24\jre\bin\client\jvm.dll
    Could someone let me know why this randomly occurs?
    Thanks

    >
    Thanks. Thats all the information I have on the error... Inquiring if anyone seen this before or know what could cause this.
    >
    If all you are inquiring about is whether anyone has seen that before then the answer is yes.
    If instead you want help finding out what is causing it in your case then you have to provide information about what it is you are doing when it shows up. Does it show up everytime you cold boot your computer? Only when you check you email?
    Give us the specifics.

  • Browser crashing, jvm.dll = error

    hi, im not sure on the details and all that, all i know is that over the last year i have been playing runescape on my pc fine. recently i had to reboot my pc to clear alot of the junk off it, upon reinstalling java for runescape i have started getting error messages. I use bt yahoo browser and it says, "browser has encounterd a problem and needs to close" then i click more detail and it says . mod name:jvm.dll
    im not sure if my java is to blame or what is. I have the latest java from the home page and the latest bt yahoo browser. I am running windows xp.
    If anyone has any help to try to fix this error i would be very grateful.

    Hi Mark,
    I was browsing the Internet for a solution to a Java problem which is the same as you're question posted on the 9th September 2005.
    I was wondering if you have a solution to the problem.
    Many thanks,
    Tom
    hi, im not sure on the details and all that, all i
    know is that over the last year i have been playing
    runescape on my pc fine. recently i had to reboot my
    pc to clear alot of the junk off it, upon
    reinstalling java for runescape i have started
    getting error messages. I use bt yahoo browser and
    it says, "browser has encounterd a problem and needs
    to close" then i click more detail and it says . mod
    name:jvm.dll
    im not sure if my java is to blame or what is. I have
    the latest java from the home page and the latest bt
    yahoo browser. I am running windows xp.
    If anyone has any help to try to fix this error i
    would be very grateful.
    hi, im not sure on the details and all that, all i
    know is that over the last year i have been playing
    runescape on my pc fine. recently i had to reboot my
    pc to clear alot of the junk off it, upon
    reinstalling java for runescape i have started
    getting error messages. I use bt yahoo browser and
    it says, "browser has encounterd a problem and needs
    to close" then i click more detail and it says . mod
    name:jvm.dll
    im not sure if my java is to blame or what is. I have
    the latest java from the home page and the latest bt
    yahoo browser. I am running windows xp.
    If anyone has any help to try to fix this error i
    would be very grateful.

  • Signature error in Module msvcr80.dll

    Using PSE 7 under Windows Xp Service Pack 3.
    I was using the Editor and then decided to try the Demo of Elemenst+. On reopening the Editor I got a Signature error in Module msvcr80.dll version 8.0.50727.4053.
    As I also have PSE 5 on my system, which is still working correctly, I looked for its msvcr80.dll; found it with a version of 8.0.50727.42. 
    Replaced the 8.0.50727.762 in: 
    C:\Program Files\Adobe\Photoshop Elements 7.0\Microsoft.VC80.CRT 
    with Version 8.0.50727.42 
    On Opening the Editor the same Signature error. 
    Note still reporting 8.0.50727.4053 Not 8.0.50727.42 So reports 8.0.50727.4053 whether .42 or 762 installed - providing Editor is reading C:\Program Files\Adobe\Photoshop Elements 7.0\Microsoft.VC80.CRT for its msvcr80.dll. (I have searched for msvcr80.dll and only found the above path for PSE 7.0 but there is another, 4053, in C:\WINDOWS\WinSxS\x86_Microsoft.VC80.CRT_1f......7989 and also 762 and 3053 in C:\WINDOWS\WinSxS\x86_Microsoft.VC80.CRT_....... ) 
    I did see a suggestion of using the msvcr80.dll from the Installation Disk but this is just a giant cab file; msvcr80.dll not listed seperately. 
    I have used System restore to go back before adding Elements+ but no luck! 
    Before I reinstall or even reformat can anyone please help?

    I have now managed to extract msvcr80.dll from my PSE 7 installation disk via WinZIP.
    It has Version 8.0.50727.762 I have placed it in C:\Program Files\Adobe\Photoshop Elements 7.0\Microsoft.VC80.CRT to no avail. Note the manifest file in C:\Program Files\Adobe\Photoshop Elements 7.0\Microsoft.VC80.CRT is looking for version 8.0.50727.762
    I note that the error report I could send to Microsoft still has mention of Elements+ even though I have restored my setup to before it was installed?

  • Error Loading JVM.dll on WinNT

    Hi
    We have recently, installed Oracle Apps 11i. While applying a patch on Apps 11i, we were getting a Java error - Error Loading: ...\classic\jvm.dll. And we are unable to apply the Apps11i patch.
    I checked the entire Server for JVM.dll, but could not find it.
    After checking this forum, I found, that, a similar BUG in Java has been reported, but most of the BUG descriptions are for WIN 95 and WIN2K and NOT for WinNT.
    Could someone help me out.
    Enviroment Info:
    Product :- Oracle Apps 11i
    Platform :- WinNT 4.0
    Regards
    Vinod

    jvm.dll should be in the <java>\bin\classic directory.
    If it's not, then I THINK there's something wrong with your java runtime environment (jre).
    Is this something you installed yourself - the java - or was it soemthing dropped on yoour system by the Oracle product?
    o former: Get a new jre.
    o Latter: Get a new jre and/or complain to Oracle.

  • Error loading jvm.dll

    our company has an application that we use for company business that runs off Java.  Lately, I have several users that can no longer launch the application.   All are receiving the same error "The Java Runtime Environment cannot be loaded from <C:\PROGR~2\Oracle\JINITI~1.18\ bin\hotspot\jvm.dll>   We are running IE 10, Window 7 and latest version of Java. I did however try to use an older version of Java to no avail.  Any assistance will be greatly appreciated.

    jvm.dll should be in the <java>\bin\classic directory.
    If it's not, then I THINK there's something wrong with your java runtime environment (jre).
    Is this something you installed yourself - the java - or was it soemthing dropped on yoour system by the Oracle product?
    o former: Get a new jre.
    o Latter: Get a new jre and/or complain to Oracle.

  • I keep getting this error messge and I am not able to download and sync the latest update, any idea's? Help ... AppName: itunes.exe      AppVer: 10.6.3.25      ModName: msvcrt.dll ModVer: 7.0.2600.2180      Offset: 000372e3

    Hi Guys,
    Please help... All of sudden my iTunes isn't working. I'm trying download and update the latest version and I keep getting error messages
    I don't know what the issue is or how to correct it... any suggestions would be awesome.
    Cheers,
    Sarah.

    Thank you so much the suggestion Tiger 
    I followed your advice to the letter and it was unfortunatley unsuccessful....
    I am seriously at a loss ....  I got the below error after I deteted, restarted and installed the new version ...
    Any other suggestions guys? Help ...
    AppName: itunes.exe
    AppVer: 10.7.0.21
    ModName: msvcrt.dll
    ModVer: 7.0.2600.2180
    Offset: 000372e3

Maybe you are looking for