Java.exe-Application Error

Hi,
There is a runtime error
java.exe - application error - the
instruction at "0x5006f60a" referenced memory at "0x08f20528". The memory
could not be "written"
The application was performing well, but now there is an runtime error which gives the above statement.
I re-installed the java.exe , but the same error exists.
Is there any solution for it.?
Kindly help.
Regards,
vidhya

Windows, eh? Ask Bill if he can resolve it.
***Annie***

Similar Messages

  • Java.exe - Application error. The instruction at "0x504c42b8" referenced memory at "0x00000009".The memory cannot be "read".

    Our production application is experiencing the following error with increasing
    frequency.
    Windows 2000 Dialog Box:
    java.exe - Application error.
    The instruction at "0x504c42b8" referenced memory at "0x00000009".The memory cannot
    be "read".
    Click on OK to terminate program.
    Does anybody know the cause and solution to this problem?
    We're using WL 5.1.0 sp11 jvm version 1.2.2_007
    However, searching the web indicates the error message occurs with a variety of
    configurations.
    [javaError.gif]

    John Slaman wrote:
    >
    Our production application is experiencing the following error with
    increasing frequency.
    Windows 2000 Dialog Box:
    java.exe - Application error.
    The instruction at "0x504c42b8" referenced memory at "0x00000009".The
    memory cannot be "read".
    Click on OK to terminate program.
    Does anybody know the cause and solution to this problem?
    We're using WL 5.1.0 sp11 jvm version 1.2.2_007
    However, searching the web indicates the error message occurs with a
    variety of configurations.I believe this is a memory flaws problem, cannot read memory can be in 2
    ways: either the address has been allocated (reserved) by some other
    resources or the address specified is not valid (phantom lookup).
    Try to get a higher version of WLS.
    Thanks,
    Neo Gigs
    "Follow the white rabbit..."

  • Jav.exe - application error

    The software I am using needs to run a Java virtual machine, and requires jre1.2.2. However when it tries to launch java I get the following error
    Java.exe application error
    The instruction at "0x500bf874" referenced memory at "0x00000e7f". The memory could not be "read"
    Click OK to terminate
    CLick on cancel to deug.
    Any ideas what is causing this?

    What OS are you using?
    What exact version of the JRE 1.2.2 are you using?
    I remember this error with Win2000 and an old 1.2.2 jre. Try to download the latest one (1.2.2_013).
    http://java.sun.com/products/jdk/1.2/download.html
    hope this help.

  • JFileChooser causes "java.exe - Application Error"

    Hi,
    When I'm closing an JFileChooser dialog (by e.g. pressing ok or cancel) a second or so later my JVM terminates with the error message "java.exe - Application Error. The instruction at "0*6d0ea46e" referenced a memory at "0x00000000". The memory could not be "read". Click on OK to treminate the program".
    I turned on verbose output from the JVM and the last printout was:
    [Loaded javax.swing.Autoscroller from C:\Program Files\Java\jdk1.5.0\jre\lib\rt.jar]
    [Dynamic-linking native method sun.awt.windows.WComponentPeer.removeNativeDropTarget ... JNI]
    result 1
    [Dynamic-linking native method sun.awt.windows.WFramePeer.getState ... JNI]
    [Loaded java.awt.EventDispatchThread$StopDispatchEvent from C:\Program Files\Java\jdk1.5.0\jre\lib\rt.jar]
    [Dynamic-linking native method sun.awt.windows.WToolkit.shutdown ... JNI]
    No exception is shown.
    I have uninstall all old JVMs and reinstalled JDK 5.0. This does not help.
    This simple program causes the termination of the JVM:
    public static void main(String[] args) {
    System.out.println("0");
    JFileChooser fileChooser = new JFileChooser();
    System.out.println("1");
    int result = -2;
    try {
    result = fileChooser.showOpenDialog(null);
    } catch (HeadlessException e1) {
    e1.printStackTrace();
    System.out.println("result " + result);
    try {
    Thread.sleep(5000);
    } catch (InterruptedException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
    System.out.println("2");
    I receive the printout "result" but not "2".
    I appriciate any help!
    BR
    /Marcus

    No, this is very bad. Any time you see a message like this mentioning a memory address, it means that java, not you, has crashed. There's no way for you to fix this. The only thing you can try is to work around it.
    My suggestions:
    1. Report it to Sun. Make sure you include your system info (processor, memory, computer manufacturer) and what version of java you're using
    2. Try downloading and installing a different version of java

  • Java.exe - Application error. memory cannot be "read".

    Hi
    I am facing this problem in a production server. This error happens once in a while.
    java.exe - Application error. The instruction at "0x0803de14" referenced memory at "0x00000000".The memory cannot be "read".
    I am using WL 8.1.4, JDK 1.4.2_08. Server is Windows Server 2003R2 (we have tried with Windows 2003 also).
    LAst week, in fact, we have reformatted the production server and reinstall the software and deploy again but still same results.
    I have created the WL domains on another app server (but still pointing to the same DB) but still having the problem.
    Any one got any clue. Many thanks.
    Edited by yewloon at 05/30/2007 12:36 AM

    how many instances do you have ? what are you trying to deploy (war,jar or ear)? how do you access the application ?, I mean do you go through any webserver ?, have you configured the webserver plugin correctly ?

  • Java.exe application error - the memory could not be read

    Hi all,
    I have some problems. I have been getting this error:
    The instruction at "0x03491c33" referenced memory at "0x034c1f77". The memory could not be "read".
    This error occurs when the disconnect function() is called.
    My code is as follows:
    JNIEXPORT void JNICALL Java_JFrame_disconnect (JNIEnv * env, jobject obj) {
    ::CoInitialize(NULL);
    HINSTANCE getprocDLL = LoadLibrary(TEXT("test.dll"));
    if (getprocDLL != NULL){
    typedef void (_cdecl*pICFUNC)(void);
    pICFUNC disconnect;
    FARPROC getProcessID = (FARPROC)GetProcAddress(HMODULE(getprocDLL),"Disconnect");
    disconnect = pICFUNC (getProcessID);
    disconnect() <---- error occurs when this function is called
    FreeLibrary(getprocDLL);
    ::CoUninitialize();
    Any idea what could be the possible problem with the code?
    Any help / suggestions would be greatly appreciated! Thanks in advance!
    Edited by: dolphlam on Sep 4, 2008 12:41 AM

    1. Check what value getProcessID has.
    2. Verify that the signature of the method that you are casting it to is correct.
    3. Can you call disconnect without actually connecting to something?
    4. Move the code out of JNI entirely. Create a C/C++ executable and verify that the code works there first.

  • Why on close am I geting " firefox.exe -Application error - The memory could not be "written" "?

    Why on close am I geting " firefox.exe -Application error "The instruction at "0x00000000" reference menory at "0x00000000". The memory could not be "written" Click OK to terminate."?
    This is on Window XP
    A program White Smoke was loaded into this unit about 3 month ago and a popup to buy started appearing 1 week ago. I unistalled the program and i found virus that was removed.
    The unit will not allow a system restore also.

    You do not need to start Firefox to disable the Java Quick Starter, you can do that via the Java Control Panel (Control Panel > Java > Advanced)
    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]

  • SyncServer.exe - Application Error

    Hi,
    After 4 trouble-free months, I've suddenly started getting problems with syncing my iPhone - after a sync, if I highlight my Device, and choose Info, I get an application error:
    +*SyncServer.exe - Application Error - the instuction at "0x01681540" referenced memory at "0x01686078". The required data was not placed into memeory because of an I/O error status of "0xc0000015".*+
    I tried doing a restore, which really hosed it, now I get an iTunes error when starting iTunes:
    +*iTunes could not connect to the iPhone ~ because an unknown error occurred(0xE8000001)*+
    Cold booting has not helped. Any ideas? iTunes, iPhone, or Windows issue?
    current versions:
    iTunes 7.5.0.20
    iPhone 1.12(2B48b)
    XP Pro SP2, all latest fixes, except Java has been nagging me for awhile that an upgrade is available.
    Thanks in advance for any help,
    Rich

    It appears the folder on my XP PC where I keep photos was corrupt, and would give the application error when trying to select the Info tab. It also was timing out when syncing, and everything but the photos were going over ok, so that is what gave me the clue. Creating a new folder, copying the photos to it, deleting the old folder, and then renaming the new folder to the old name fixed my sync problems.

  • IKernel.exe - Application Error

    I downloaded j2sdk1.4.1_02 yesterday and installed it on windows XP. At the very end of the installation I get an error window saying:
    IKernel.exe - Application Error
    The instruction at "0x771c741a" referrenced memory at "0x00168c8". The memory could not be "read".
    Click on OK to terminate the program
    I have previously been running j2sdk-1_3_1_01 which has worked fine for me. But I am having problems with the new java program. We are working on a team project at University rotating graphs. But I can not seem to get the code that works at the University to run on my home PC.
    The error I am getting when i type "java ImageViewerFrame"
    Exception in thread "main" java.lang.NoClassDefFoundError: ImageViewerFrame
    This class does have a main method though.
    I guess my question is, has the Application Error above caused java to mess up somehow?
    I have set up all the PATH and CLASSPATH variables in XP as far as i can see correctly. I am just stuck for ideas.
    Thanks in Advance
    Mike

    Hello again... I'm still stuck
    Just finished installing and no error this time after the install, but after trying to run my "java ImageViewerFrame" class again i recieved this:
    C:\Documents and Settings\Mike Costen\Desktop\Mar27d>java ImageViewerFrame
    An unexpected exception has been detected in native code outside the VM.
    Unexpected Signal : EXCEPTION_ACCESS_VIOLATION occurred at PC=0x6D1C369C
    Function=Java_sun_awt_font_NativeFontWrapper_registerFonts+0x14BC
    Library=C:\j2sdk1.4.1_02\jre\bin\fontmanager.dll
    Current Java thread:
    at sun.awt.font.NativeFontWrapper.registerFonts(Native Method)
    - locked <06B95D48> (a java.lang.Class)
    at sun.java2d.SunGraphicsEnvironment.addPathFonts(SunGraphicsEnvironment
    .java:736)
    at sun.java2d.SunGraphicsEnvironment.registerFonts(SunGraphicsEnvironmen
    t.java:587)
    at sun.java2d.SunGraphicsEnvironment.access$100(SunGraphicsEnvironment.j
    ava:49)
    at sun.java2d.SunGraphicsEnvironment$2.run(SunGraphicsEnvironment.java:2
    09)
    at java.security.AccessController.doPrivileged(Native Method)
    at sun.java2d.SunGraphicsEnvironment.loadFonts(SunGraphicsEnvironment.ja
    va:203)
    - locked <02F15300> (a sun.awt.Win32GraphicsEnvironment)
    at sun.java2d.SunGraphicsEnvironment.mapFontName(SunGraphicsEnvironment.
    java:451)
    at java.awt.Font.initializeFont(Font.java:313)
    at java.awt.Font.<init>(Font.java:345)
    at sun.awt.windows.WDesktopProperties.setFontProperty(WDesktopProperties
    .java:148)
    - locked <02A60000> (a sun.awt.windows.WDesktopProperties)
    at sun.awt.windows.WDesktopProperties.getWindowsParameters(Native Method
    at sun.awt.windows.WDesktopProperties.<init>(WDesktopProperties.java:56)
    at sun.awt.windows.WToolkit.initializeDesktopProperties(WToolkit.java:86
    5)
    at java.awt.Toolkit.getDesktopProperty(Toolkit.java:1533)
    - locked <02F12B78> (a sun.awt.windows.WToolkit)
    at sun.awt.shell.ShellFolder.<clinit>(ShellFolder.java:171)
    at javax.swing.filechooser.FileSystemView.getRoots(FileSystemView.java:3
    24)
    at javax.swing.filechooser.WindowsFileSystemView.getHomeDirectory(FileSy
    stemView.java:625)
    at javax.swing.plaf.metal.MetalFileChooserUI.installComponents(MetalFile
    ChooserUI.java:213)
    at javax.swing.plaf.basic.BasicFileChooserUI.installUI(BasicFileChooserU
    I.java:130)
    at javax.swing.plaf.metal.MetalFileChooserUI.installUI(MetalFileChooserU
    I.java:152)
    at javax.swing.JComponent.setUI(JComponent.java:449)
    at javax.swing.JFileChooser.updateUI(JFileChooser.java:1700)
    at javax.swing.JFileChooser.setup(JFileChooser.java:345)
    at javax.swing.JFileChooser.<init>(JFileChooser.java:320)
    at javax.swing.JFileChooser.<init>(JFileChooser.java:273)
    at ImageViewerFrame.<init>(ImageViewerFrame.java:30)
    at ImageViewerFrame.main(ImageViewerFrame.java:227)
    Dynamic libraries:
    0x00400000 - 0x00406000 C:\j2sdk1.4.1_02\bin\java.exe
    0x77F50000 - 0x77FF9000 C:\WINDOWS\System32\ntdll.dll
    0x77E60000 - 0x77F45000 C:\WINDOWS\system32\kernel32.dll
    0x77DD0000 - 0x77E5B000 C:\WINDOWS\system32\ADVAPI32.dll
    0x77CC0000 - 0x77D35000 C:\WINDOWS\system32\RPCRT4.dll
    0x77C10000 - 0x77C63000 C:\WINDOWS\system32\MSVCRT.dll
    0x6D340000 - 0x6D46A000 C:\j2sdk1.4.1_02\jre\bin\client\jvm.dll
    0x77D40000 - 0x77DCD000 C:\WINDOWS\system32\USER32.dll
    0x77C70000 - 0x77CB0000 C:\WINDOWS\system32\GDI32.dll
    0x76B40000 - 0x76B6C000 C:\WINDOWS\System32\WINMM.dll
    0x6D1E0000 - 0x6D1E7000 C:\j2sdk1.4.1_02\jre\bin\hpi.dll
    0x6D310000 - 0x6D31E000 C:\j2sdk1.4.1_02\jre\bin\verify.dll
    0x6D220000 - 0x6D239000 C:\j2sdk1.4.1_02\jre\bin\java.dll
    0x6D330000 - 0x6D33D000 C:\j2sdk1.4.1_02\jre\bin\zip.dll
    0x6D000000 - 0x6D105000 C:\j2sdk1.4.1_02\jre\bin\awt.dll
    0x73000000 - 0x73023000 C:\WINDOWS\System32\WINSPOOL.DRV
    0x76390000 - 0x763AA000 C:\WINDOWS\System32\IMM32.dll
    0x771B0000 - 0x772CA000 C:\WINDOWS\system32\ole32.dll
    0x6D190000 - 0x6D1E0000 C:\j2sdk1.4.1_02\jre\bin\fontmanager.dll
    0x73760000 - 0x737A5000 C:\WINDOWS\System32\ddraw.dll
    0x73BC0000 - 0x73BC6000 C:\WINDOWS\System32\DCIMAN32.dll
    0x73940000 - 0x73A07000 C:\WINDOWS\System32\D3DIM700.DLL
    0x76C90000 - 0x76CB2000 C:\WINDOWS\system32\imagehlp.dll
    0x6D510000 - 0x6D58C000 C:\WINDOWS\system32\DBGHELP.dll
    0x77C00000 - 0x77C07000 C:\WINDOWS\system32\VERSION.dll
    0x76BF0000 - 0x76BFB000 C:\WINDOWS\System32\PSAPI.DLL
    Local Time = Fri Mar 28 17:36:38 2003
    Elapsed Time = 9
    # The exception above was detected in native code outside the VM
    # Java VM: Java HotSpot(TM) Client VM (1.4.1_02-b06 mixed mode)
    # An error report file has been saved as hs_err_pid288.log.
    # Please refer to the file for further information.
    C:\Documents and Settings\Mike Costen\Desktop\Mar27d>
    i thought that because i had no errors on install that my problem would be solved, but it doesnt appear to have been.
    Thanks again.
    Mike

  • Lkernel.exe - application error

    Downloaded and ran j2sdk-1_4_1_02-windows-i586. Installation wizard ran through just fine and finished, but I then got following message:
    "lkernel.exe - Application error
    The instruction at ?0x771c741a? referenced memory at ?0xoo1643c0?. The memory could not be ?read?.".
    Will appreciate hints on where answers can be found. Thanks!

    Hello m8,
    If you'd have done a search for your problem you would have found my post and could have read up on it there.
    I just managed to fix my problem with the java program i was having. But i was also have this Ikernel.exe error. I just reinstalled windows and it worked fine.
    Make sure you take off all traces of old java programs before you install new versions. I dont think i did properly to begin with and my computer went crazy.
    Mike

  • IEXPLORER.EXE - APPLICATION ERROR "The exception unknow software exception"

    During my development of new user creation on Active Directory LDAP server from SUN IDM (Test connection between resource AD and SUN IDM Administrator console is successful),I am facing below exception.
    While registering new user and assigning a resource AD to this user i am getting
    "The exception unknow software exception (0xe06d7363) occured in the application at location (0x77e4bee7)"
    in the message window IEXPLORER.EXE - APPLICATION ERROR.
    Could any one please throw some light on this issue and do the needful.

    This forum focuses on security-related discussions for Java.
    Your question does not.
    Locking this thread.

  • "jqsnotify.exe- Application Error" popup when open new tab or windows

    "jqsnotify.exe- Application Error" popup that states "...instruction at 0x00152058 referenced memory at 0x025f0014... memory could not be 'read'. Click on OK to terminate the program" whenever a new window or tab is opened. What does this mean? I get exactly the same popup message "...0x00152058...0x025f0014..." when using google chrome, except the "Application Error" is from Chrome.exe. Not sure if this is related but ever since these popups, firefox often hangs/freezes, when I open taskmng, it states that the program is "not responding", I have to force to end it, Again exactly the same problem when I use Chrome.
    == This happened ==
    Every time Firefox opened
    == July 5th-ish ,2010 ==
    == User Agent ==
    Opera/9.80 (Windows NT 5.1; U; en) Presto/2.6.30 Version/10.60

    That is a problem with the Java Quick starter.
    http://www.java.com/en/download/help/quickstarter.xml - What is Java Quick Starter (JQS)? What is the benefit of running JQS? - 6.0
    Disable the Java Quick Start extension: Tools > Addons > Extensions
    Control Panel > Java > Advanced tab > Miscellaneous >Java Quick Starter (disable)

  • WINWORD.EXE -Application Error The application was unable to start correctly (0xc0000142). Click ok to close the application

    HI 
    when i am trying to open MSWord following message pop up and i can't open MSword any more:
    WINWORD.EXE -Application Error The application was unable to start correctly (0xc0000142). Click ok to close the application.
    Please advise 

    Hi,
    Does Word start in Safe Mode?
    Press Win key + R, type "winword.exe /safe" in the blank box, press Enter.
    If Word can start in Safe Mode, the issue should be related to 3rd-party add-ins, disable the suspicious add-ins to determine which one caused the problem.
    You can also try repairing Office from Control Panel -> Programs and Features, check if this helps.
    Regards,
    Melon Chen
    TechNet Community Support

  • Flash player plugin _12_0_0_77.exe - application error in win 7

    How to solve flash player plugin _12_0_0_77.exe - application error in win 7?

    You get this when doing what?  Is there any additional information in the message?

  • What does firefox.exe-application error mean? Firefox wont even open it just says this, and then click okay to terminate the problem.

    When I go to open up Firefox, it does not open no matter what I try It just pops up this box that says Firefox.exe - application error.
    Then it says the Instruction at "0x798377a9" referenced memory at "0x798377a9". The memory could not be "written".
    Click on OK to termintate the program
    What does this mean? And why cant I use Firefox. I can still use internet explorer just fine.
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1)

    Do a clean reinstall and download a fresh Firefox copy from http://www.mozilla.com/firefox/all.html and save the file to the desktop.
    Uninstall your current Firefox version and remove the Firefox program folder before installing that copy of the Firefox installer.
    It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    See http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Clean_reinstall

Maybe you are looking for