Annotation-caused compiler crash

Hi,
When attempting to build against a class that uses runtime annotations, javac is crashing with:
An exception has occurred in the compiler (1.6.0-rc). Please file a bug at the Java Developer Connection (http://java.sun.com/webapps/bugreport) after checking the Bug Parade for duplicates. Include your program and the following diagnostic in your report. Thank you.
com.sun.tools.javac.code.Symbol$CompletionFailure: class file for test.annotation.TestAnnotation not found
The test case that generates this error can be found at:
http://www.cjtucker.com/annotation-bug.tgz
Synopsis:
Attempting to build against a class that contains a runtime annotation requires the definition of the annotation to be available to the compiler. If the definition is not available, the compiler crashes.
Test case:
The test case attempts to build three classes in three separate packages: a simple RUNTIME scoped annotation, a "core" class, and a "ui" class that builds against the core class. The "ui" class neither knows nor cares about the annotated properties of the "core" class. The annotation class is build in isolation; the core class is built only against the annotation class; the ui class is built only against the core class.
The test case tarball contains the necessary .java files and directory structure for compilation. The compilation commands are contained in compile.sh.
The crash can be avoided by including the annotation class in the classpath when building the ui component. The crash has been reproduced in 1.5.0_04, 1.5.0_05, and 1.6.0b61. Other JDKs have not been tested. The crash occurs with both RUNTIME and CLASS scoped annotations, though not with SOURCE scope (as expected: the compiler is correctly stripping annotations in that case). The crash does not occur if the annotation does not take parameters (i.e. is an empty "marker" annotation).
This raises some additional questions I'd be interested in hearing comment on. What is the expected behavior here? I would expect the annotation class should not be required as a dependency, in the same way I'm not expected to declare a dependency on every class used by a class I interact with. This behavior with annotations seems to breach encapsulation (for example, a client would have to know that my libraries happened to be using a Hibernate persistence layer whether or not this is of interest to them). Perhaps one of the Java gurus here could shed some further light on this?
Cheers,
Chris Tucker

Hi,
I know this is an old post but I am having the exact same problem with 1.6.0_11 and have not been able to find a solution.
Any assistance would be much appreciated.
Thanks.

Similar Messages

  • @SuppressWarnings annotation causing compiler error

    Anyone know why it is illegal to put a @SuppressWarnings annotation as shown in this example? I know this is a retarded example, and that you could just place the annotation on the method instead of inline with the code, so I am not looking for alternatives. I am just curious why it is illegal in the place shown.
    public class SuppressTest {
         public void addFoo(Object bar) {
              List list = (List<String>) bar;
              @SuppressWarnings("unchecked")
              list.add("foo");
    }

    Here is the correct way, to solve this problem. Maybe this makes clear, why the other way is not supported. The @SuppressWarnings affects only the definition of list.
    Anyway - you should be sure, that the cast, that is suppressed, is correct. And you cannot assure it in this special case, because everyone could call addFoo with nearly everything as parameter.
    public class SuppressTest {
        public void addFoo(Object bar) {
         @SuppressWarnings("unchecked")
         List<String> list = (List<String>) bar;
         list.add("foo");
    }Edited by: yawah on 10.12.2009 07:58

  • CVI 2010 compiler crash

    This short piece of code below causes compiler crash in CVI 2010 - in CVI9.0 it works fine.
    Thanks for help.
    jirjan
    /* Compiler Crash example, CVI 2010 - v10.0.0 */
    static void fctDummy1(void) {};
    static void fctDummy2(void) {};
    typedef struct tagMyStruct
      void (*DummyFunction1)  ( void );
      void (*DummyFunction2)  ( void );
    } tMyStruct;
             tMyStruct MyFctStruct         = {fctDummy1, fctDummy2};
    const tMyStruct MyConstFctStruct = {fctDummy1, fctDummy2};
    void MyTest(void)
       MyFctStruct.DummyFunction1();
       MyFctStruct.DummyFunction2();
       /* this line doesn't cause the compiler crash...!!*/
       MyConstFctStruct.DummyFunction1();
       /* BUT next line caused the compiler crash...!!*/
       MyConstFctStruct.DummyFunction2();

    It is a very simple project with one source file only - sending in attachment (adapt to your project path or create simple project with .c file)..As I wrote before - with CVI9.0 (and/or any C compiler) I can compile the source file, CVI 2010 crashes while compiling..
    Thanks for your time
    Jiri
    Attachments:
    CompilerTest.zip ‏3 KB

  • WebHelp compile crashes in RH8 and RH6

    I am currently evaluating Version 8 of Robohelp and would like to get all my projects on the same version of Robohelp. Most of my projects are at Version 6. I have another project that is currently at Version x.41 that I would like to upgrade and was testing it to see how it runs with Version 8. The X4.1 project converted to Version 8 without a hitch but when I compiled the WebHelp , it crashed and I received the following error: “Adobe Robohelp 8 has encountered a problem and needs to close. “  Here are the details:
    AppName:  robohtml.exe
    AppVer:  8.0.0.203
    ModName: msvcr80.dll
    ModVer:  8.0.50727.3053
    Offset:  0008aa0
    After researching the error on line, I found that it was the conditional build statement that was causing the crash. When I compiled the WebHelp without the conditional build statement, it compiled just fine.  I could not find any help on line for dealing with this error for Version 8 so I made a new copy of the project and converted it to Version 6, which apparently had a patch I can download. I applied the patch that was in Peter Grainge’s site to my copy of Robohelp 6. The X4.1 project opened without a hitch in Version 6. But when I compiled the WebHelp, it crashed again with the same error – even with the patch installed. Here are the error details:
    AppName:  robohtml.exe
    AppVer:  6.0.99.0
    ModName:  msvcr80.dll
    ModVer:  8.0.50727.3053
    Offset:  0008aa0
    Can someone please shed some light into this? I really would like to have all my RH projects at the same version.
    Thanks!

    The TOC and Index might be easier than you think. In RH8 you can create a TOC and Index that is a copy of another one. This works well with TOCs and Indexes in the same project but usually a TOC or Index in another project will have different links to topics so they will be pretty useless. If you create exactly the same folders though, then you might be able to copy the old TOC and Index. Back up first though.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Compiler Crash: Volatile Bit Fields (reading)

    Can anyone verify that this crashes the Studio 12 C++ compiler?
    typedef struct {
    #if defined(CRASH)
        volatile int crash : 1;
    #else
                  int crash : 1;
    #endif
    } Flags_t;
    int main()
        Flags_t Flags = {0};
        return Flags.crash;  /* reading the volatile bit-field causes the compiler crash */
    }With cc, it compiles fine, and it compiled fine up until some recent patch with CC. 124863-01 seems to work but 124863-03 results in a compiler SEGV.
    Edited by: Mike_Morgan on Apr 17, 2008 2:44 PM
    You'll need to use: -DCRASH to see the compiler SEGV.

    Thanks for filing the bug report. It is CR 6690835, which should be visible at bugs.sun.com in a day or two.

  • I have files that freeze my programs whenever I try to open ANY file. Is there a way to find the exact files causing the crash?

    I have files that are freezing my programs (adobe; after effect and photoshop, as well as maxon cinema 4d). Whenever I try to import ANY file from within the program it doen't even let me select the file I need before freezing. I have moved all files off my desktop and into my dropbox, and it now allows me to import files/search for files on the desktop but NOT dropbox, once I go to dropbox it freezes again. I am assuming there are files within dropbox now that are crashing my programs. The problem is I have a lot of files in there and would like to remove the corrupt ones so that I can use my programs without freezing. Is there a way to find the exact files causing the crash?
    This has happened a couple of times and each time I have to move all my files off my desktop, so there must be a type of file doing this, I just don't know what files they are.
    Mac Book Pro 15" running OSX 10.9
    Processor  2.3 GHz Intel Core i7
    Memory  16 GB 1600 MHz DDR3
    Graphics  Intel Iris Pro 1024 MB
    ANY help would be greatly appreciated! It is making it really hard to get work done. THANKS!

    This error sounds to me like you have/had BootCamp Windows installed and then removed, posible ?
    If so (and even if not so), try restating your MBA while holding down the alt/option-key until you get to the Boot Selection Screen.
    Choose to boot OSX.
    Once in OSX go to System Preferences then Startup Volume and set your OSX to be the default.
    Hope it helps
    Stefan

  • Using Disk Warrior on external drive causes MacBook crash

    I work on MacBook System 10.6.7, I back up to LaCie external drive, which I partitioned so that one partition is only for backup, the other is bootable. On this partition I have a clone of Disk Warrior (4.1), to use on the MacBook .
    Today I ran DW from the MacBook on the external drive for the first time, because lately it happens that the backup partition does not always appear in the finder (still performs back up though). I applied it first to the boot-partition,  and it told me there were some problems. When it got to replacing the directory, the computer crashed mid way.
    I performed Disk Verify on that partition through Disk Utility, and it said that it needed repair, and then that it did repair it. Checked other partition, no problem.
    Tried again to rebuild directory for the external drive, and both partitions caused the MacBook to crash. I then booted from the external drive to see if it works, and ran DW on the MacBook, and had no problem there.
    Anybody can tell me if it is the MacBook that caused the crash, or if the problem is with the external, and if there is anything else I can try to sort it out?
    thanks,

    I work on MacBook System 10.6.7, I back up to LaCie external drive, which I partitioned so that one partition is only for backup, the other is bootable. On this partition I have a clone of Disk Warrior (4.1), to use on the MacBook .
    Today I ran DW from the MacBook on the external drive for the first time, because lately it happens that the backup partition does not always appear in the finder (still performs back up though). I applied it first to the boot-partition,  and it told me there were some problems. When it got to replacing the directory, the computer crashed mid way.
    I performed Disk Verify on that partition through Disk Utility, and it said that it needed repair, and then that it did repair it. Checked other partition, no problem.
    Tried again to rebuild directory for the external drive, and both partitions caused the MacBook to crash. I then booted from the external drive to see if it works, and ran DW on the MacBook, and had no problem there.
    Anybody can tell me if it is the MacBook that caused the crash, or if the problem is with the external, and if there is anything else I can try to sort it out?
    thanks,

  • Use of discrete graphics causes hard crash - (MacBook Pro 2010 with ML 10.8.2/3)

    I have a client with a Mid-2010 MacBook Pro. He was having crashes with Lion so I upgraded him to Mountain Lion 10.8.2. The crashes did not go away.
    I troubleshooted and with the help of gfxCardStatus noticed that every time his machine went to use the discrete graphcis he got the gray hard crash screen and system had to restart. Back then I tried a beta of 10.8.3 and it didn't help.
    I noticed that if I created another user account (profile) it would not crash when the discrete graphics card was called upon.
    So, I re-installed the OS (to 10.8.2), created a new profile and manually migrated pictures, documents, keychain, mail, movies, music and re-installed the relevant Applications. Everything was working fine and my client went on a trip to Europe and soon the crashes began again. Then he upgraded to 10.8.3 and the crashes got even more frequent (it seems 10.8.3 puts more applications on the discrete graphics list so it switches even more).
    I am wondering what could have caused the crashes to begin. It was before he upgraded to 10.8.3. Some application or something he was using must have changed a setting or corrupted something to cause the crashing to begin. I haven't done this yet, but I'm sure if I create another user account it won't crash on it.
    Any ideas where to turn my attention to see what is causing the shift from his working user account to a crash-causing one?
    He has iLife, Office 2011, Final Cut Pro X, iPhoto Library Manager, VLC, Audacity, DropBox, FileMaker Pro 11, Flip4Mac Player, Fuze, GotoAssist, Handbrake, Skype, iSkySoft DVD Creator, iSkySoft Video Convertor, Onyx and Skype.
    I know there are *MANY* others having problems with the automatic graphics card switching and it seems some are having more problems when gfxCardStatus is installed?
    - Elan

    is this your MacBook:
    TS4088- MacBook Pro (15-inch, Mid 2010): Intermittent black screen or loss of video
    Take a copy of the article with you when you go for service. They need to run a SPECIAL diagnostic to decide whether you have this problem. Do not leave until they run the special diagnostic. The "overnight run" does not detect this problem.
    If they confirm you have the problem, they will replace the graphics chip, which is part of the motherboard. be prepared to hand over your Mac for depot repair. (Your backups must be up-to-date).

  • Is there a way to track down the cause of crashes in SAFARI?

    Not long ago I was able to eliminate one type of crash I had been having in SAFARI by following a suggestion made in this forum. Those crashes, however, were of the type that generated a 'crash report.' So they left a kind of 'paper trail' as to what was causing them.
    More recently I have been having frequent crashes that don't result in such reports. These crashes occur apparently randomly when I mouseclick on a link. The spinning beach ball appears on-screen and never leaves.
    Is there a way to find out exactly what is causing these crashes?
    Thanks.

    Hello Michael:
    I have not yet seen a
    good approach to using that information (short of
    deleting the account).
    better search some yourself Barry <G>
    if something runs fine in another account - one can isolate the cause to one of the plist files in the main acct Home/Library/Preferences/ or possibly an add-on in Home/Library/Internet Pug-Ins or ...Input Managers for example.
    If there is the same problem in the new acct - you can discount anything with the main acct user library - plists,caches,plugins,input managers, the whole lot.
    A useful tool is Console - found in Applications/Utilities/ keep it running while the 'problem' in question crops up & see if any messages pop up in either the system log or console log. Sometimes these will point straight at the problem area, other times no help at all.

  • JDK 1.6: Annotation Processing & Compiler Hack

    Hello,
    I am currently using JDK 1.6.0_23
    For one of the requirement, I am going with annotation processing & compiler Hack using Tools.jar available as part of JDK.
    I have refered a PDF - "The Hacker's Guide to javac (PDF) by David Erni and Adrian Kuhn (2008)
    " suggested from page of - http://openjdk.java.net/groups/compiler/
    My requirement is below ->
    Origional Source:
    public void someMethod() {
    }Modified Source:
    public void someMethod() {
       int items = new example.Product().getItems();
    } Below is my code to generate the variable declaration -
    private TreeMaker make; // fetch it from somewhere
    JCNewClass newProduct = make.NewClass(null, List.<JCExpression>nil(), make.Ident(names.fromString("example.Product")), List.<JCExpression>nil(), null);
    JCFieldAccess fieldAccess = make.Select(newProduct, names.fromString("getItems"));
    JCMethodInvocation getTimeMethodInvocation = make.Apply(List.<JCExpression>nil(), fieldAccess, List.<JCExpression>nil());
    expression = getTimeMethodInvocation;
    JCVariableDecl itemsDeclaration = make.VarDef(modifiers,name,varType,expression);
    System.out.println(itemsDeclaration); // this prints int items = new example.Product().getItems(); This itemsDeclaration, I am adding to a List<JCStatement> of JCBlock of JCMethodDecl.
    However modified code does not compile :(
    If I make below changes - Modified does compile
    1)
    JCNewClass newProduct = make.NewClass(null, List.<JCExpression>nil(), make.Ident(names.fromString("Product")), List.<JCExpression>nil(), null);Product insteadof example.Product
    2) Add belwo statement in the origional source code
    import examle.Product; What exactly am I missing here ???
    The AST tree is diffcult to understand with minimum documentation & without much help on the interent.
    I hope this is correct forum, for my query.
    It will be a great help.
    Regards,
    Vikas Parikh

    Hello,
    I couldn't contact them, as the white papaer didn't conatin any email address / contact info.
    I have investigated myself on this & would like to share with you guys, so that any other developer
    do not have to invest precious time like I have done.
    To create a New Class, you require a JCExpression.
    Below would work, if class already has imported Product class.
    make.Ident(names.fromString("Product"))However, if class has not imported the Product class, then there are 2 options -
    1) Create a Ident</pre> from <pre>Symbol (ClassSymbol)
    2) Create a JCField</pre> from <pre>NameI used a later approach.
    Regards,
    Vikas Parikh
    Edited by: 996153 on Mar 31, 2013 11:04 PM

  • Sticky Notes in a pdf file cause ie7 crashed.

    This is a very interesting bug.
    System version: Windows XP with SP3
    Adobe Reader Version: 9
    IE version: IE 7
    Files needed for testing:
    a pdf file (note.pdf) with Sticky Note displayed.
    a html file (note.html) which has a url link to note.pdf
    Action which causes the crash:
    1.       Open note.html in a new IE window
    2.       Click the link to open the note.pdf in a new window or a new tab, then close it
    3.       Click AGAIN the link to open the note.pdf in a new window or a new tab, then close it
    Then you could see the error window popup, the ie7 browser crashed. This has been tested in 3 PCs.
    Check the Error Event, it said:
    Event Type:        Error
    Event Source:    Application Error
    Event Category:                None
    Event ID:              1000
    Description:
    Faulting application iexplore.exe, version 7.0.6000.16850, faulting module msvcr80.dll, version 8.0.50727.3053, fault address 0x0001e898.
    For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
    Data:
    0000: 6c707041 74616369 206e6f69 6c696146
    0010: 20657275 78656920 726f6c70 78652e65
    0020: 2e372065 30362e30 312e3030 30353836
    0030: 206e6920 6376736d 2e303872 206c6c64
    0040: 2e302e38 32373035 30332e37 61203335
    0050: 666f2074 74657366 30303020 39386531
    0060: 0a0d38
    The bug doesn’t happen to IE 6 and Fixfox

    Try Goodreader in the App Store. It should do the job for you.

  • [svn:fx-trunk] 12077: Although Spark RichText does not support link formats , modifying compiled FXG to not generate ActionScript code that will cause compile time exceptions .

    Revision: 12077
    Revision: 12077
    Author:   [email protected]
    Date:     2009-11-20 18:16:32 -0800 (Fri, 20 Nov 2009)
    Log Message:
    Although Spark RichText does not support link formats, modifying compiled FXG to not generate ActionScript code that will cause compile time exceptions.
    Removing references to Flex Builder 3 in RPC.
    QE notes: N/A
    Doc notes: N/A
    Bugs:
    SDK-24305 - Link format property nodes cause errors on RichText in FXG 2.0
    SDK-24322 - A couple references to Flex Builder 3 in Flex 4 LangRef (and code comments)
    Reviewer: Deepa
    Tests run: checkintests
    Is noteworthy for integration: No
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-24305
        http://bugs.adobe.com/jira/browse/SDK-24322
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/xml/XMLDecoder.as
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/fxg/FlexFXG2SWFTranscoder.java

  • KB3038314 causing IE crash

    hey all,
    hopefully i have the right forum for this question.
    the IE cumulative update for the past few months has been causing IE to crash on one of our internal websites.
    the March update (3032359) has a documented issue with table-based websites (which our internal site is); this issue isn't documented for the April update (3038314), however it's still crashing IE on this website.
    if i understand the cumulative updates correctly, they're a roll up of individual IE updates.  from what i can see, there's no way to uninstall these updates one by one.
    my current theory is there's an offending update within the cumulative that's causing the crashing issue, but not sure how to isolate the offending update.
    make sense?  any help is appreciated.
    thanks!

    Hi Matt,
    >>if i understand the cumulative updates correctly, they're a roll up of individual IE updates.  from what i can see, there's no way to uninstall these updates one by one.
    Yes, your understanding is correct. Please try to remove this update.
    If this issue is very urgent, you may contact Microsoft Customer Service and Support (CSS) via telephone so that a dedicated Support Professional can assist with your request.
    To obtain the phone numbers for specific technology request please take a look at the web site listed below:
    http://support.microsoft.com/default.aspx?scid=fh;EN-US;OfferProPhone#faq607
    Hope the issue will be resolved soon.
    Steven Lee Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    thanks for the response; is there a way to uninstall individual updates that are included in the cumulative?
    it's likely that one of these updates is causing our issue, and until we determine the offending update, we'll likely continue to encounter this issue going forward with the cumulative updates.
    i can contact Microsoft support, but if there's a way for me to uninstall each update manually, i can easily take the time to troubleshoot this on my own.
    any ideas?
    thanks!

  • OVM 3 Generic Storage Plugin. Acess Group configuration causes server crash

    Our iSCSI management is currently entirely done manually at the servers console, because we still don't have a SAN Equallogic storage plugin.
    At OVM Manager interface, what we thought being just useless in our case (SAN Access Group), is the actual iSCSI connection (and disconnection..) management for servers.
    Following the upgrade to 3.2.1, setting up the SAN did nothing more than what we do manually. But undoing part of it caused the crash.
    All over OVM Manager, any operation/setup that could impact running VMs is denied... Except there, at the real root of everything.
    Removing a iSCSI initiator from that panel disconnects abruptly the iSCSI disk, !!!! without warning !!!!.
    Then, after the 60s timetout, the physical server reboots.
    It is still not clear if we get a benefice to setup that "Access Group" of the SAN or not. At least, once setup, we know that we'd better keep it...

    Updating OVM 3 host to use "brbond0" vs "xend" managed bridge to allow direct hosting of OVM Manager VM.
    Update "ifcfg-bond0",
    [root@ovm322 ~]# cat /etc/sysconfig/network-scripts/ifcfg-bond0
    DEVICE=bond0
    BONDING_OPTS="mode=1 miimon=250 use_carrier=1 updelay=500 downdelay=500 primary=eth0"
    ONBOOT=yes
    BRIDGE=brbond0
    Create "ifcfg-brbond0",
    [root@ovm322 ~]# cat /etc/sysconfig/network-scripts/ifcfg-brbond0
    DEVICE=brbond0
    BOOTPROTO=bridge
    ONBOOT=yes
    IPADDR=A.B.C.D                                                       # IP address of ovm322
    NETMASK=255.255.254.0
    NETWORK=A.B.C.0
    GATEWAY=A.B.C.1
    Update  "/etc/xen/xend-config.sxp",
    # Enable network-bridge, JAP 20120618
    # Disable network-bridge, JAP 20131223
    #(network-script network-bridge)
    Update  "vif" for OVM Manager 3 "vm.cfg",
    [root@ovm322 ~]# grep ^vif /etc/xen/auto/ovm322-m
    vif = ['type=netfront, bridge=brbond0']

  • Compiler Crashes!!

    Hi,
    I'm using J2sdk1.4.1 on Windows XP pro. When I compile my code, the compiler crashes! It seems to work sometimes, and not others, and I think it tends to crash when I'm importing and using items from javax.swing.*
    Here's what comes up when I try to compile:
    C:\Documents and Settings\Claire\Desktop\Claire\school\Birmingham\Team Java>javac UserInterface.java
    Unexpected Signal : EXCEPTION_FLT_STACK_CHECK occurred at PC=0xBBD0D2
    Function=[Unknown.]
    Library=(N/A)
    NOTE: We are unable to locate the function name symbol for the error
    just occurred. Please refer to release documentation for possible
    reason and solutions.
    Current Java thread:
    Dynamic libraries:
    0x00400000 - 0x00408000 c:\j2sdk1.4.1\bin\javac.exe
    0x77F50000 - 0x77FF7000 C:\WINDOWS\System32\ntdll.dll
    0x77E60000 - 0x77F46000 C:\WINDOWS\system32\kernel32.dll
    0x77DD0000 - 0x77E5D000 C:\WINDOWS\system32\ADVAPI32.dll
    0x78000000 - 0x78086000 C:\WINDOWS\system32\RPCRT4.dll
    0x77C10000 - 0x77C63000 C:\WINDOWS\system32\MSVCRT.dll
    0x00280000 - 0x002F4000 C:\DOCUME~1\Claire\LOCALS~1\Temp\ata6.tmp
    0x77340000 - 0x773CB000 C:\WINDOWS\system32\COMCTL32.DLL
    0x77C70000 - 0x77CB0000 C:\WINDOWS\system32\GDI32.dll
    0x77D40000 - 0x77DCC000 C:\WINDOWS\system32\USER32.dll
    0x71B20000 - 0x71B31000 C:\WINDOWS\system32\MPR.DLL
    0x771B0000 - 0x772D1000 C:\WINDOWS\system32\OLE32.DLL
    0x77120000 - 0x771AB000 C:\WINDOWS\system32\OLEAUT32.DLL
    0x71AD0000 - 0x71AD8000 C:\WINDOWS\System32\WSOCK32.DLL
    0x71AB0000 - 0x71AC5000 C:\WINDOWS\System32\WS2_32.dll
    0x71AA0000 - 0x71AA8000 C:\WINDOWS\System32\WS2HELP.dll
    0x6D330000 - 0x6D45C000 c:\j2sdk1.4.1\jre\bin\client\jvm.dll
    0x76B40000 - 0x76B6C000 C:\WINDOWS\System32\WINMM.dll
    0x6D1D0000 - 0x6D1D7000 c:\j2sdk1.4.1\jre\bin\hpi.dll
    0x6D300000 - 0x6D30D000 c:\j2sdk1.4.1\jre\bin\verify.dll
    0x6D210000 - 0x6D229000 c:\j2sdk1.4.1\jre\bin\java.dll
    0x6D320000 - 0x6D32D000 c:\j2sdk1.4.1\jre\bin\zip.dll
    0x76C90000 - 0x76CB2000 C:\WINDOWS\system32\imagehlp.dll
    0x6D510000 - 0x6D58D000 C:\WINDOWS\system32\DBGHELP.dll
    0x77C00000 - 0x77C07000 C:\WINDOWS\system32\VERSION.dll
    0x76BF0000 - 0x76BFB000 C:\WINDOWS\System32\PSAPI.DLL
    Local Time = Wed Mar 19 16:26:13 2003
    Another exception has been detected while we were handling last error.
    Dumping information about last error:
    ERROR REPORT FILE = (N/A)
    PC = 0x00BBD0D2
    SIGNAL = -1073741678
    FUNCTION NAME = (N/A)
    OFFSET = 0xFFFFFFFF
    LIBRARY NAME = (N/A)
    Please check ERROR REPORT FILE for further information, if there is any.
    Good bye.
    C:\Documents and Settings\Claire\Desktop\Claire\school\Birmingham\Team Java>
    Anyone got any ideas?
    Claire

    Hello,
    We have similar java crash on HP-UX 11.11 (with all latest OS and java patches). The funny thing is that we able to run java as "root", but we won't able to run java as local users. We checked possible environment issue, but did not find anything what could be a problem. We also reinstalled java 1.4 on that machine - it did not fix the problem. Also we tried this: we installed Java 1.3 - works with all users, Java 1.2 - works with all users. With Java 1.4 , we are getting this:
    $ java -version
    Another exception has been detected while we were handling last error.
    Dumping information about last error:
    ERROR REPORT FILE = (N/A)
    PC = c52227cb
    SIGNAL = 11
    FUNCTION NAME = (N/A)
    OFFSET = 0xFFFFFFFF
    LIBRARY NAME = (N/A)
    Please check ERROR REPORT FILE for further information, if there is any.
    Good bye.
    Abort
    $ which java
    /usr/lnms/bin/java
    $ id
    uid=104(onmsorcl) gid=104(oinstall)
    $
    $ exit
    root@titania > java -version
    java version "1.4.2.00"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2.00-031015-15:06)
    Java HotSpot(TM) Server VM (build 1.4.2 1.4.2.00-031015-16:52-PA_RISC2.0 PA2.0,
    mixed mode)
    Any ideas?
    Yulia

Maybe you are looking for