JVM SIGSEGV error running Java 1.5.0_01 on linux

Three times last week we had the JVM come down hard with a SISSEGV error running our web application. Each crash was on a different machine. The offending thread was always in libnet.so shared library handling either a getHostByAddr() or getLocalHostName() call. I included a portion of one of the JVM dumps below. In the other two cases we are in either an Oracle JDBC driver or a SQL Server JDBC driver (tds).
We are not able to issolate and reproduce this problem at will. This is happening in our QA environment and we are planning to go to production soon. Any ideas or information would be most helpful.
We've just decided to upgrade to Java 1.5.0_04 in the hope it might help this problem. Too early to tell if this is making a difference or not.
The JVM is running Tomcat 5.5.9.
OS:Red Hat Enterprise Linux AS release 3 (Taroon Update 2)
vm_info: Java HotSpot(TM) Server VM (1.5.0_01-b08) for linux-x86, built on Dec 6 2004 19:33:50 by java_re with gcc 3.2.1-7a (J2SE release)
Thanks for your attention.
--Brad
first part of jvm dump follows:
# An unexpected error has been detected by HotSpot Virtual Machine:
# SIGSEGV (0xb) at pc=0x007737b9, pid=16179, tid=122411952
# Java VM: Java HotSpot(TM) Server VM (1.5.0_01-b08 mixed mode)
# Problematic frame:
# C [libc.so.6+0x797b9] memchr+0x29
--------------- T H R E A D ---------------
Current thread (0xb192d0f0): JavaThread "http-80-Processor25" daemon [_thread_in_native, id=16341]
siginfo:si_signo=11, si_errno=0, si_code=1, si_addr=0xb0bfe0c2
Registers:
EAX=0xb0bfe0c2, EBX=0x0082ea98, ECX=0x00000a0a, EDX=0x0a0a0a0a
ESP=0x074bcae8, EBP=0x074bcb14, ESI=0x00000036, EDI=0x000003e7
EIP=0x007737b9, CR2=0xb0bfe0c2, EFLAGS=0x00010202
Top of Stack: (sp=0x074bcae8)
0x074bcae8: 000003e7 00000036 0075ae2b b0bfe0c2
0x074bcaf8: 0000000a 00000036 b0bff038 074bcc48
0x074bcb08: 0082ea98 b2f87428 074bcc48 074bcb38
0x074bcb18: 0075adb3 b2f87428 074bcc48 000003e7
0x074bcb28: 0000000a 00000001 00000000 0082ea98
0x074bcb38: 074bcb64 00763ebb b2f87428 074bcc48
0x074bcb48: 000003e7 0000000a 00000001 00000000
0x074bcb58: 0011c3a4 074bcc48 000003e8 074bcbb0
Instructions: (pc=0x007737b9)
0x007737a9: 89 d1 c1 e2 10 66 89 ca a8 03 0f 84 cd 00 00 00
0x007737b9: 38 10 0f 84 67 01 00 00 40 4e 0f 84 3f 01 00 00
Stack: [0x0747d000,0x074be000), sp=0x074bcae8, free space=254k
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
C [libc.so.6+0x797b9] memchr+0x29
C [libc.so.6+0x60db3] IOgetline+0x43
C [libc.so.6+0x69ebb] fgets_unlocked+0x5b
C [libnss_files.so.2+0x4b14] nssfiles_gethostbyaddr_r+0x184
C [libc.so.6+0xef7ed] gethostbyaddr_r+0xdd
C [libnet.so+0x5321] Java_java_net_Inet4AddressImpl_getHostByAddr+0x10d
j java.net.Inet4AddressImpl.getHostByAddr([B)Ljava/lang/String;+0
j java.net.InetAddress$1.getHostByAddr([B)Ljava/lang/String;+4
j java.net.InetAddress.getHostFromNameService(Ljava/net/InetAddress;Z)Ljava/lang/String;+7
j java.net.InetAddress.getHostName(Z)Ljava/lang/String;+10
j java.net.InetAddress.getHostName()Ljava/lang/String;+2
j org.apache.coyote.http11.Http11Processor.parseHost(Lorg/apache/tomcat/util/buf/MessageBytes;)V+38
j org.apache.coyote.http11.Http11Processor.prepareRequest()V+794

So, we started getting this problem again in production (on 1.5.0_06, even).
Following up on Dan Paum's report, I dug around a little deeper:
~/java/old/java/net$ javap Inet4AddressImpl
Compiled from "Inet4AddressImpl.java"
class java.net.Inet4AddressImpl extends java.lang.Object implements java.net.InetAddressImpl{
java.net.Inet4AddressImpl();
public native java.lang.String getLocalHostName() throws java.net.UnknownHostException;
public native byte[][] lookupAllHostAddr(java.lang.String) throws java.net.UnknownHostException;
public native java.lang.String getHostByAddr(byte[]) throws java.net.UnknownHostException;
public synchronized java.net.InetAddress anyLocalAddress();
public synchronized java.net.InetAddress loopbackAddress();
public boolean isReachable(java.net.InetAddress, int, java.net.NetworkInterface, int) throws java.io.IOException;
Both anyLocalAddress() and loopbackAddress() are synchronized, but not getLocalHostName(). The native code for getLocalHostName() calls gethostbyaddr_r in lieu of synchronization. gethostbyaddr_r is a non-standard, non-portable call that, judging from a brief trawl through Google, has historically been problematic for multi-platform code.
I'm guessing this bug is another such problem.
I extracted Inet4AddressImpl.java from src.zip in the JDK, changed the declaration, compiled, and "updated" the modified version into lib/rt.jar:
~/java/new/java/net$ javap Inet4AddressImpl
Compiled from "Inet4AddressImpl.java"
class java.net.Inet4AddressImpl extends java.lang.Object implements java.net.InetAddressImpl{
java.net.Inet4AddressImpl();
public synchronized native java.lang.String getLocalHostName() throws java.net.UnknownHostException;
public native byte[][] lookupAllHostAddr(java.lang.String) throws java.net.UnknownHostException;
public native java.lang.String getHostByAddr(byte[]) throws java.net.UnknownHostException;
public synchronized java.net.InetAddress anyLocalAddress();
public synchronized java.net.InetAddress loopbackAddress();
public boolean isReachable(java.net.InetAddress, int, java.net.NetworkInterface, int) throws java.io.IOException;
So far, so good. I will stress test this over the next few days, and if it works, I'll open a bug in the bug database to get this fixed.

Similar Messages

  • Error running Java after first time installation on shared server

    Hello, I have just installed jre1.6.0_21 for the first time in my home folder on a shared Linux server. I am logged onto the server, so I am acting as the localhost. I get the following error when running java -version:
    Error occurred during initialization of VM
    Could not reserve enough space for object heap
    Could not create the Java virtual machine.
    I am a newbie to Java. Would appreciate any advice.

    You are using OA?
    Post in this forum: OA Framework
    Timo

  • SIGSEGV error in java compiler when compiling CDT 5.0.0

    I am trying to run a headless build of the Eclipse CDT 5.0.0 code and am encountering a SIGSEGV violation when using either the Java SE Runtime Environment (build 1.6.0_07-b0) with Java HotSpot Server VM (build 10.0-b23, mixed mode) or with Java SE Runtime Environment (build 1.6.0_06-b02) with Java HotSpot Server VM (build 10.0-b22, mixed mode). This occurs on our RedHat Linux machine.
    # An unexpected error has been detected by Java Runtime Environment:
    # SIGSEGV (0xb) at pc=0x0625665c, pid=9579, tid=853339056
    # Java VM: Java HotSpot(TM) Server VM (10.0-b23 mixed mode linux-x86)
    # Problematic frame:
    # V [libjvm.so+0x25665c]
    # An error report file with more information is saved as:
    # /folk/mpauna/surf_build/build/plugins/hs_err_pid9579.log
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    # The crash happened outside the Java Virtual Machine in native code.
    # See problematic frame for where to report the bug.
    The error occurs on the java command:
    jvm_args: -Xms100m -Xmx2000m
    java_command: /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.equinox.launcher_1.0.100.v20080509-1800.jar -application org.eclipse.ant.core.antRunner -buildfile /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.pde.build_3.4.0.v20080604/scripts/build.xml -data /folk/mpauna/surf_build/workspace -configuration /folk/mpauna/surf_build/configuration -DjavacDebugInfo=on -DjavacVerbose=true -Dbuilder=/folk/mpauna/surf_build/configuration -verbose -debug
    Launcher Type: SUN_STANDARD
    I have tried various -Xms and -Xmx values, but it keeps crashing.
    Does anyone have any suggestions or ideas???
    Thanks,
    Mark Pauna
    # An unexpected error has been detected by Java Runtime Environment:
    # SIGSEGV (0xb) at pc=0x0625665c, pid=9579, tid=853339056
    # Java VM: Java HotSpot(TM) Server VM (10.0-b23 mixed mode linux-x86)
    # Problematic frame:
    # V [libjvm.so+0x25665c]
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    # The crash happened outside the Java Virtual Machine in native code.
    # See problematic frame for where to report the bug.
    --------------- T H R E A D ---------------
    Current thread (0x0811c400): JavaThread "CompilerThread0" daemon [_thread_in_native, id=9589, stack(0x32d4e000,0x32dcf000)]
    siginfo:si_signo=SIGSEGV: si_errno=0, si_code=1 (SEGV_MAPERR), si_addr=0x00000000
    Registers:
    EAX=0x00000000, EBX=0x30a6445c, ECX=0x31981654, EDX=0xffffffff
    ESP=0x32dcce70, EBP=0x32dccec8, ESI=0x30a64428, EDI=0x00000000
    EIP=0x0625665c, CR2=0x00000000, EFLAGS=0x00010202
    Top of Stack: (sp=0x32dcce70)
    0x32dcce70: 31981654 00000000 00000331 00000331
    0x32dcce80: 32dccf90 31b7ddcc 00000000 32dccfd0
    0x32dcce90: 066a0bf0 ffffffff 0000000e 08121b30
    0x32dccea0: 00000001 31981654 00000002 31b7ddc8
    0x32dcceb0: 00000011 32dcd31c 01000318 00000733
    0x32dccec0: 32dccf90 32dcd2b0 32dccff8 06255bb5
    0x32dcced0: 32dcd2b0 00000001 32dcdc00 32dcdc00
    0x32dccee0: 000000dc 000000dc 32dccf28 32dcd31c
    Instructions: (pc=0x0625665c)
    0x0625664c: 5d dc 8b 03 53 8d 5e 34 ff 50 40 89 c7 8b 56 34
    0x0625665c: 8b 00 21 c2 89 56 34 8b 47 04 8b 4b 04 21 c1 8b
    Stack: [0x32d4e000,0x32dcf000], sp=0x32dcce70, free space=507k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    V [libjvm.so+0x25665c]
    V [libjvm.so+0x255bb5]
    V [libjvm.so+0x2a2acd]
    V [libjvm.so+0x29f950]
    V [libjvm.so+0x2471e9]
    V [libjvm.so+0x2a6e3a]
    V [libjvm.so+0x2a6846]
    V [libjvm.so+0x5b61ed]
    V [libjvm.so+0x4fe289]
    C [libpthread.so.0+0x5371]
    Current CompileTask:
    C2:1284 org.eclipse.jdt.internal.compiler.lookup.ParameterizedMethodBinding.<init>(Lorg/eclipse/jdt/internal/compiler/lookup/ParameterizedTypeBinding;Lorg/eclipse/jdt/internal/compiler/lookup/MethodBinding;)V (596 bytes)
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x31b42800 JavaThread "Compiler Processing Task" daemon [_thread_in_native, id=9633, stack(0x31faf000,0x32000000)]
    0x083f1000 JavaThread "Worker-1" [_thread_blocked, id=9601, stack(0x324a9000,0x324fa000)]
    0x3260b000 JavaThread "Java indexing" daemon [_thread_blocked, id=9600, stack(0x3255a000,0x325ab000)]
    0x32639400 JavaThread "Worker-0" [_thread_blocked, id=9599, stack(0x325af000,0x32600000)]
    0x32aa3000 JavaThread "Start Level Event Dispatcher" daemon [_thread_blocked, id=9596, stack(0x327af000,0x32800000)]
    0x32804800 JavaThread "Framework Event Dispatcher" daemon [_thread_blocked, id=9595, stack(0x32931000,0x32982000)]
    0x333a9800 JavaThread "State Data Manager" daemon [_thread_blocked, id=9594, stack(0x32984000,0x329d5000)]
    0x33301400 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=9591, stack(0x32c7c000,0x32ccd000)]
    0x0811e400 JavaThread "CompilerThread1" daemon [_thread_blocked, id=9590, stack(0x32ccd000,0x32d4e000)]
    =>0x0811c400 JavaThread "CompilerThread0" daemon [_thread_in_native, id=9589, stack(0x32d4e000,0x32dcf000)]
    0x0811b000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=9588, stack(0x32dcf000,0x32e20000)]
    0x08103400 JavaThread "Finalizer" daemon [_thread_blocked, id=9587, stack(0x33020000,0x33071000)]
    0x080ff000 JavaThread "Reference Handler" daemon [_thread_blocked, id=9586, stack(0x33071000,0x330c2000)]
    0x08059800 JavaThread "main" [_thread_in_native, id=9580, stack(0xb7f8f000,0xb7fe0000)]
    Other Threads:
    0x080fbc00 VMThread [stack: 0x330c2000,0x33143000] [id=9585]
    0x33302c00 WatcherThread [stack: 0x32bfb000,0x32c7c000] [id=9592]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    PSYoungGen total 190464K, used 66161K [0xa7020000, 0xb4e50000, 0xb4e50000)
    eden space 174208K, 28% used [0xa7020000,0xaa0e65c8,0xb1a40000)
    from space 16256K, 99% used [0xb1a40000,0xb2a16078,0xb2a20000)
    to space 27520K, 0% used [0xb3370000,0xb3370000,0xb4e50000)
    PSOldGen total 91072K, used 14886K [0x37e50000, 0x3d740000, 0xa7020000)
    object space 91072K, 16% used [0x37e50000,0x38cd9850,0x3d740000)
    PSPermGen total 36352K, used 18133K [0x33e50000, 0x361d0000, 0x37e50000)
    object space 36352K, 49% used [0x33e50000,0x35005418,0x361d0000)
    Dynamic libraries:
    0023c000-00251000 r-xp 00000000 fd:00 131843 /lib/ld-2.3.4.so
    00251000-00252000 r-xp 00015000 fd:00 131843 /lib/ld-2.3.4.so
    00252000-00253000 rwxp 00016000 fd:00 131843 /lib/ld-2.3.4.so
    00255000-0037a000 r-xp 00000000 fd:00 131868 /lib/tls/libc-2.3.4.so
    0037a000-0037b000 r-xp 00124000 fd:00 131868 /lib/tls/libc-2.3.4.so
    0037b000-0037e000 rwxp 00125000 fd:00 131868 /lib/tls/libc-2.3.4.so
    0037e000-00380000 rwxp 0037e000 00:00 0
    00382000-00384000 r-xp 00000000 fd:00 131870 /lib/libdl-2.3.4.so
    00384000-00386000 rwxp 00001000 fd:00 131870 /lib/libdl-2.3.4.so
    00388000-003a9000 r-xp 00000000 fd:00 131869 /lib/tls/libm-2.3.4.so
    003a9000-003ab000 rwxp 00020000 fd:00 131869 /lib/tls/libm-2.3.4.so
    0049e000-004ac000 r-xp 00000000 fd:00 131871 /lib/tls/libpthread-2.3.4.so
    004ac000-004ae000 rwxp 0000d000 fd:00 131871 /lib/tls/libpthread-2.3.4.so
    004ae000-004b0000 rwxp 004ae000 00:00 0
    00841000-00853000 r-xp 00000000 fd:00 131879 /lib/libnsl-2.3.4.so
    00853000-00855000 rwxp 00011000 fd:00 131879 /lib/libnsl-2.3.4.so
    00855000-00857000 rwxp 00855000 00:00 0
    00a22000-00a2a000 r-xp 00000000 fd:00 131855 /lib/tls/librt-2.3.4.so
    00a2a000-00a2c000 rwxp 00007000 fd:00 131855 /lib/tls/librt-2.3.4.so
    00a2c000-00a36000 rwxp 00a2c000 00:00 0
    06000000-0665d000 r-xp 00000000 00:24 27361688 /net/ordeal/ordeal4/home/mpauna/jvm/jdk-6U7/jdk1.6.0_07/jre/lib/i386/server/libjvm.so
    0665d000-066a1000 rwxp 0065c000 00:24 27361688 /net/ordeal/ordeal4/home/mpauna/jvm/jdk-6U7/jdk1.6.0_07/jre/lib/i386/server/libjvm.so
    066a1000-06ac3000 rwxp 066a1000 00:00 0
    08048000-08052000 r-xp 00000000 00:24 31654352 /net/ordeal/ordeal4/home/mpauna/jvm/jdk-6U7/jdk1.6.0_07/bin/java
    08052000-08053000 rwxp 00009000 00:24 31654352 /net/ordeal/ordeal4/home/mpauna/jvm/jdk-6U7/jdk1.6.0_07/bin/java
    08053000-09279000 rwxp 08053000 00:00 0
    30500000-3056b000 rwxp 30500000 00:00 0
    3056b000-30600000 ---p 3056b000 00:00 0
    30700000-308fc000 rwxp 30700000 00:00 0
    308fc000-30900000 ---p 308fc000 00:00 0
    30900000-309fa000 rwxp 30900000 00:00 0
    309fa000-30a00000 ---p 309fa000 00:00 0
    30a00000-30afe000 rwxp 30a00000 00:00 0
    30afe000-30b00000 ---p 30afe000 00:00 0
    30b00000-30bf9000 rwxp 30b00000 00:00 0
    30bf9000-30c00000 ---p 30bf9000 00:00 0
    30d00000-30dfc000 rwxp 30d00000 00:00 0
    30dfc000-30e00000 ---p 30dfc000 00:00 0
    30e00000-30ef9000 rwxp 30e00000 00:00 0
    30ef9000-30f00000 ---p 30ef9000 00:00 0
    30f00000-31100000 rwxp 30f00000 00:00 0
    31100000-311f9000 rwxp 31100000 00:00 0
    311f9000-31200000 ---p 311f9000 00:00 0
    31200000-31300000 rwxp 31200000 00:00 0
    31300000-313f9000 rwxp 31300000 00:00 0
    313f9000-31400000 ---p 313f9000 00:00 0
    31617000-3161b000 r-xs 000ca000 00:24 30949519 /net/ordeal/ordeal4/home/mpauna/jvm/jdk-6U7/jdk1.6.0_07/jre/lib/ext/localedata.jar
    3161b000-3161d000 r-xs 00001000 00:24 26886931 /net/ordeal/ordeal4/home/mpauna/jvm/jdk-6U7/jdk1.6.0_07/jre/lib/ext/dnsns.jar
    3161d000-31620000 r-xs 00034000 00:24 26886930 /net/ordeal/ordeal4/home/mpauna/jvm/jdk-6U7/jdk1.6.0_07/jre/lib/ext/sunpkcs11.jar
    31620000-31623000 r-xs 00027000 00:24 26886929 /net/ordeal/ordeal4/home/mpauna/jvm/jdk-6U7/jdk1.6.0_07/jre/lib/ext/sunjce_provider.jar
    31623000-3162c000 r-xs 000e2000 00:24 26984767 /net/ordeal/ordeal4/home/mpauna/jvm/jdk-6U7/jdk1.6.0_07/jre/lib/plugin.jar
    3162c000-3162d000 r-xs 00000000 00:24 27771418 /net/ordeal/ordeal4/home/mpauna/jvm/jdk-6U7/jdk1.6.0_07/jre/lib/management-agent.jar
    3162d000-31633000 r-xs 00091000 00:24 19644485 /net/ordeal/ordeal4/home/mpauna/jvm/jdk-6U7/jdk1.6.0_07/jre/lib/jsse.jar
    31633000-31636000 r-xs 00013000 00:24 27771410 /net/ordeal/ordeal4/home/mpauna/jvm/jdk-6U7/jdk1.6.0_07/jre/lib/jce.jar
    31636000-3163e000 r-xs 000a8000 00:24 26984768 /net/ordeal/ordeal4/home/mpauna/jvm/jdk-6U7/jdk1.6.0_07/jre/lib/javaws.jar
    3163e000-3164c000 r-xs 00286000 00:24 26984769 /net/ordeal/ordeal4/home/mpauna/jvm/jdk-6U7/jdk1.6.0_07/jre/lib/deploy.jar
    3164c000-3165a000 r-xs 00656000 00:24 19644480 /net/ordeal/ordeal4/home/mpauna/jvm/jdk-6U7/jdk1.6.0_07/jre/lib/charsets.jar
    3165a000-3165e000 r-xs 00023000 00:82 18533368 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.ui.console_3.3.0.v20080529-1300.jar
    3165e000-31661000 r-xs 00016000 00:82 18533393 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.ui.views.properties.tabbed_3.4.0.I20080527-2000.jar
    31661000-31664000 r-xs 00019000 00:82 18533382 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.ui.navigator.resources_3.3.100.I20080606-1300.jar
    31664000-3167d000 r-xs 00122000 00:82 18533359 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.team.ui_3.4.0.I20080604.jar
    3167d000-31685000 r-xs 00056000 00:82 18533349 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.team.core_3.4.0.I20080605.jar
    31685000-31692000 r-xs 0009c000 00:82 18531292 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.compare_3.4.0.I20080604.jar
    31692000-31699000 r-xs 00047000 00:82 18533384 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.ui.navigator_3.3.100.I20080606-1300.jar
    31699000-316a3000 r-xs 00065000 00:82 18533311 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.ltk.ui.refactoring_3.4.0.v20080605-1800.jar
    316a3000-316aa000 r-xs 00047000 00:82 18533309 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.ltk.core.refactoring_3.4.0.v20080603-2000.jar
    316aa000-316b4000 r-xs 00068000 00:82 18533344 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.search_3.4.0.v20080603-2000.jar
    316b4000-316b7000 r-xs 00019000 00:82 18532442 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.core.filebuffers_3.4.0.v20080603-2000.jar
    316b7000-316c3000 r-xs 0007b000 00:82 18533370 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.ui.editors_3.4.0.v20080603-2000.jar
    316c3000-316cf000 r-xs 00081000 00:82 18533401 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.ui.workbench.texteditor_3.4.0.v20080603-2000.jar
    316cf000-316d4000 r-xs 00037000 00:82 18533361 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.text_3.4.0.v20080605-1800.jar
    316d4000-316e7000 r-xs 000d4000 00:82 18533302 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.jface.text_3.4.0.v20080603-2000.jar
    316e7000-316ed000 r-xs 00043000 00:82 18533367 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.ui.forms_3.3.100.v20080611.jar
    316ed000-316f6000 r-xs 00074000 00:82 18533413 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.update.ui_3.2.100.v20080318.jar
    316f6000-316f8000 r-xs 00004000 00:82 18533252 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.equinox.security.win32.x86_1.0.0.v20080529-1600.jar
    316f8000-316fb000 r-xs 00017000 00:82 18533253 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.equinox.security_1.0.0.v20080512-1800.jar
    316fb000-316fc000 r-xs 00006000 00:82 18532449 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.core.net.win32.x86_1.0.0.I20080521.jar
    316fc000-316fe000 r-xs 0000c000 00:82 18532450 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.core.net_1.1.0.I20080604.jar
    316fe000-316ff000 r-xs 00014000 00:82 18533408 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.update.core.win32_3.2.100.v20080107.jar
    316ff000-31708000 r-xs 0008b000 00:82 18533409 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.update.core_3.2.200.v20080515.jar
    31708000-3170a000 r-xs 00016000 00:82 18533405 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.update.configurator_3.2.200.v20080417.jar
    3170a000-3170d000 r-xs 00011000 00:82 18533395 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.ui.views_3.3.0.I20080509-2000.jar
    3170d000-31716000 r-xs 0004c000 00:82 18532438 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.core.databinding_1.1.0.I20080527-2000.jar
    31716000-3171b000 r-xs 0002b000 00:82 18533299 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.jface.databinding_1.2.0.I20080515-2000a.jar
    3171b000-3171c000 r-xs 00001000 00:82 6292408 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.ui.workbench.compatibility_3.2.0.I20080509-2000/compatibility.jar
    3171c000-3175f000 r-xs 0037b000 00:82 18533402 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.ui.workbench_3.4.0.I20080606-1300.jar
    3175f000-31762000 r-xs 00017000 00:82 18531295 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.core.commands_3.4.0.I20080509-2000.jar
    31762000-31775000 r-xs 000eb000 00:82 18533303 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.jface_3.4.0.I20080606-1300.jar
    31800000-318fd000 rwxp 31800000 00:00 0
    318fd000-31900000 ---p 318fd000 00:00 0
    31900000-319f1000 rwxp 31900000 00:00 0
    319f1000-31a00000 ---p 319f1000 00:00 0
    31a43000-31a46000 r-xs 0000d000 00:82 18533313 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.osgi.services_3.1.200.v20071203.jar
    31a46000-31a48000 r-xs 00012000 00:82 18532483 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.equinox.app_1.1.0.v20080421-2006.jar
    31a48000-31a4a000 r-xs 00004000 00:82 18532457 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.core.runtime.compatibility.auth_3.2.100.v20070502.jar
    31ac6000-31adc000 r-xs 001ef000 00:82 18533346 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.swt.win32.win32.x86_3.4.0.v3448f.jar
    31adc000-31add000 r-xs 00003000 00:82 18533347 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.swt_3.4.0.v3448f.jar
    31add000-31ae1000 r-xs 00020000 00:82 18533403 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.ui_3.4.0.I20080610-1200.jar
    31ae1000-31ae5000 r-xs 00031000 00:82 18533267 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.help_3.3.100.v20080610.jar
    31ae5000-31ae7000 r-xs 00003000 00:82 18532444 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.core.filesystem.win32.x86_1.1.0.v20080604-1400.jar
    31ae7000-31ae9000 r-xs 00009000 00:82 18532445 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.core.filesystem_1.2.0.v20080604-1400.jar
    31ae9000-31aec000 r-xs 00012000 00:82 18532440 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.core.expressions_3.4.0.v20080603-2000.jar
    31aec000-31aef000 r-xs 00018000 00:82 18531167 /folk/mpauna/surf_build/prebuilt/plugins/javax.servlet_2.4.0.v200806031604.jar
    31aef000-31af2000 r-xs 00013000 00:82 18532434 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.core.contenttype_3.3.0.v20080604-1400.jar
    31af2000-31af5000 r-xs 00017000 00:82 18533245 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.equinox.preferences_3.2.200.v20080421-2006.jar
    31af5000-31af9000 r-xs 00027000 00:82 18533247 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.equinox.registry_3.4.0.v20080516-0950.jar
    31af9000-31afa000 r-xs 00002000 00:82 7471513 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.core.runtime.compatibility.registry_3.2.200.v20080610/runtime_registry_compatibility.jar
    31afa000-31afd000 r-xs 00012000 00:82 18532447 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.core.jobs_3.4.0.v20080512.jar
    31afd000-31b00000 r-xs 00015000 00:82 18532485 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.equinox.common_3.4.0.v20080421-2006.jar
    31b00000-31bfd000 rwxp 31b00000 00:00 0
    31bfd000-31c00000 ---p 31bfd000 00:00 0
    31c00000-31cf8000 rwxp 31c00000 00:00 0
    31cf8000-31d00000 ---p 31cf8000 00:00 0
    31d9d000-31dac000 r-xs 000e4000 00:82 18533317 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.osgi_3.4.0.v20080605-1900.jar
    31dac000-31dae000 r-xs 0000f000 00:82 18532463 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.core.runtime_3.4.0.v20080512.jar
    31dae000-31db0000 r-xs 00006000 00:82 18532468 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.core.variables_3.2.100.v20080529-1300.jar
    31db0000-31db2000 r-xs 00016000 00:82 18531281 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.ant.core_3.2.0.v20080529.jar
    31db2000-31db3000 r-xs 00003000 00:82 18532454 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.core.resources.win32.x86_3.4.0.v20071204.jar
    31db3000-31db6000 r-xs 0001b000 00:82 18532452 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.core.resources.compatibility_3.4.0.v20080604-1400.jar
    31db6000-31dc0000 r-xs 000a1000 00:82 18532455 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.core.resources_3.4.0.v20080604-1400.jar
    31dc0000-31dc1000 r-xs 00005000 00:82 18533397 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.ui.win32_3.2.100.v20080408-0800.jar
    31dc1000-31de4000 r-xs 001ce000 00:82 18533377 /folk/mpauna/surf_build/prebuilt/plugins/org.eclipse.ui.ide_3.4.0.I20080606-1300.jar
    31de4000-31e00000 r-xs 00427000 00:82 18531162 /folk/mpauna/surf_build/prebuilt/plugins/com.ibm.icu_3.8.1.v20080530.jar
    31e00000-31ef5000 rwxp 31e00000 00:00 0
    31ef5000-31f00000 ---p 31ef5000 00:00 0
    31f5e000-31f61000 rwxp 31f5e000 00:00 0
    31f61000-31faf000 rwxp 31f61000 00:00 0
    31faf000-31fb2000 ---p 31faf000 00:00 0
    31fb2000-320f6000 rwxp 31fb2000 00:00 0
    320f6000-32100000 ---p 320f6000 00:00 0
    32100000-321f7000 rwxp 32100000 00:00 0
    321f7000-32200000 ---p 321f7000 00:00 0
    3223d000-32240000 rwxp 3223d000 00:00 0
    32240000-3228e000 rwxp 32240000 00:00 0
    3228e000-32290000 r-xs 0000c000 00:82 9585607 /folk/mpauna/surf_build/configuration/org.eclipse.osgi/bundles/13/1/.cp/lib/remoteAnt.jar
    32290000-32292000 r-xs 00005000 00:82 9585606 /folk/mpauna/surf_build/configuration/org.eclipse.osgi/bundles/13/1/.cp/lib/antrunner.jar
    32292000-32294000 r-xs 00007000 00:82 9421062 /folk/mpauna/surf_build/configuration/org.eclipse.osgi/bundles/12/1/.cp/lib/antsupportlib.jar
    32294000-32295000 r-xs 00002000 00:82 9454313 /folk/mpauna/surf_build/configuration/org.eclipse.osgi/bundles/117/1/.cp/ant_tasks/pde-ant.jar
    32295000-32297000 r-xs 0000b000 00:82 5865800 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.pde.build_3.4.0.v20080604/lib/pdebuild-ant.jar
    32297000-32299000 r-xs 0000d000 00:82 9782717 /folk/mpauna/surf_build/configuration/org.eclipse.osgi/bundles/114/1/.cp/lib/apitooling-ant.jar
    32299000-3229b000 r-xs 00002000 00:82 9257572 /folk/mpauna/surf_build/configuration/org.eclipse.osgi/bundles/93/1/.cp/jdtCompilerAdapter.jar
    3229b000-3229c000 r-xs 00000000 00:82 9175598 /folk/mpauna/surf_build/configuration/org.eclipse.osgi/bundles/84/1/.cp/ant_tasks/helpbase-ant.jar
    3229c000-3229e000 r-xs 00001000 00:82 10125441 /folk/mpauna/surf_build/configuration/org.eclipse.osgi/bundles/67/1/.cp/ant_tasks/generator-ant.jar
    3229e000-3229f000 r-xs 00001000 00:82 9273441 /folk/mpauna/surf_build/configuration/org.eclipse.osgi/bundles/59/1/.cp/ant_tasks/director-ant.jar
    3229f000-322a0000 r-xs 00001000 00:82 9471750 /folk/mpauna/surf_build/configuration/org.eclipse.osgi/bundles/27/1/.cp/ant_tasks/resources-ant.jar
    322a0000-322ff000 r-xs 00b89000 00:24 31081220 /net/ordeal/ordeal4/home/mpauna/jvm/jdk-6U7/jdk1.6.0_07/lib/tools.jar
    322ff000-32300000 r-xs 00003000 00:82 6078712 /folk/mpauna/surf_eclipse_34/plugins/org.apache.ant_1.7.0.v200803061910/lib/ant-weblogic.jar
    32300000-323fd000 rwxp 32300000 00:00 0
    323fd000-32400000 ---p 323fd000 00:00 0
    3240c000-3240f000 rwxp 3240c000 00:00 0
    3240f000-3245d000 rwxp 3240f000 00:00 0
    3245d000-3245e000 r-xs 00001000 00:82 6078711 /folk/mpauna/surf_eclipse_34/plugins/org.apache.ant_1.7.0.v200803061910/lib/ant-trax.jar
    3245e000-3245f000 r-xs 00001000 00:82 6078709 /folk/mpauna/surf_eclipse_34/plugins/org.apache.ant_1.7.0.v200803061910/lib/ant-swing.jar
    3245f000-32460000 r-xs 00000000 00:82 6078708 /folk/mpauna/surf_eclipse_34/plugins/org.apache.ant_1.7.0.v200803061910/lib/ant-stylebook.jar
    32460000-32461000 r-xs 00008000 00:82 6078707 /folk/mpauna/surf_eclipse_34/plugins/org.apache.ant_1.7.0.v200803061910/lib/ant-starteam.jar
    32461000-32469000 r-xs 00061000 00:82 6078706 /folk/mpauna/surf_eclipse_34/plugins/org.apache.ant_1.7.0.v200803061910/lib/ant-nodeps.jar
    32469000-3246a000 r-xs 00002000 00:82 6078705 /folk/mpauna/surf_eclipse_34/plugins/org.apache.ant_1.7.0.v200803061910/lib/ant-netrexx.jar
    3246a000-3246b000 r-xs 00002000 00:82 6078704 /folk/mpauna/surf_eclipse_34/plugins/org.apache.ant_1.7.0.v200803061910/lib/ant-launcher.jar
    3246b000-3246d000 r-xs 00015000 00:82 6078703 /folk/mpauna/surf_eclipse_34/plugins/org.apache.ant_1.7.0.v200803061910/lib/ant-junit.jar
    3246d000-3246f000 r-xs 00006000 00:82 6078702 /folk/mpauna/surf_eclipse_34/plugins/org.apache.ant_1.7.0.v200803061910/lib/ant-jsch.jar
    3246f000-32470000 r-xs 00001000 00:82 6078701 /folk/mpauna/surf_eclipse_34/plugins/org.apache.ant_1.7.0.v200803061910/lib/ant-jmf.jar
    32470000-32472000 r-xs 00001000 00:82 6078681 /folk/mpauna/surf_eclipse_34/plugins/org.apache.ant_1.7.0.v200803061910/lib/ant-jdepend.jar
    32472000-32473000 r-xs 00001000 00:82 6078673 /folk/mpauna/surf_eclipse_34/plugins/org.apache.ant_1.7.0.v200803061910/lib/ant-javamail.jar
    32473000-32475000 r-xs 00004000 00:82 6078671 /folk/mpauna/surf_eclipse_34/plugins/org.apache.ant_1.7.0.v200803061910/lib/ant-jai.jar
    32475000-32477000 r-xs 0000a000 00:82 6078670 /folk/mpauna/surf_eclipse_34/plugins/org.apache.ant_1.7.0.v200803061910/lib/ant-commons-net.jar
    32477000-32479000 r-xs 00000000 00:82 6078669 /folk/mpauna/surf_eclipse_34/plugins/org.apache.ant_1.7.0.v200803061910/lib/ant-commons-logging.jar
    32479000-3247b000 r-xs 00000000 00:82 6078668 /folk/mpauna/surf_eclipse_34/plugins/org.apache.ant_1.7.0.v200803061910/lib/ant-apache-resolver.jar
    3247b000-3247c000 r-xs 00000000 00:82 6078667 /folk/mpauna/surf_eclipse_34/plugins/org.apache.ant_1.7.0.v200803061910/lib/ant-apache-regexp.jar
    3247c000-3247e000 r-xs 00008000 00:82 6078666 /folk/mpauna/surf_eclipse_34/plugins/org.apache.ant_1.7.0.v200803061910/lib/ant-apache-oro.jar
    3247e000-3247f000 r-xs 00000000 00:82 6078665 /folk/mpauna/surf_eclipse_34/plugins/org.apache.ant_1.7.0.v200803061910/lib/ant-apache-log4j.jar
    3247f000-32481000 r-xs 00000000 00:82 6078664 /folk/mpauna/surf_eclipse_34/plugins/org.apache.ant_1.7.0.v200803061910/lib/ant-apache-bsf.jar
    32481000-32483000 r-xs 00001000 00:82 6078663 /folk/mpauna/surf_eclipse_34/plugins/org.apache.ant_1.7.0.v200803061910/lib/ant-apache-bcel.jar
    32483000-32484000 r-xs 00001000 00:82 6078662 /folk/mpauna/surf_eclipse_34/plugins/org.apache.ant_1.7.0.v200803061910/lib/ant-antlr.jar
    32484000-32498000 r-xs 00127000 00:82 6078713 /folk/mpauna/surf_eclipse_34/plugins/org.apache.ant_1.7.0.v200803061910/lib/ant.jar
    32498000-3249d000 r-xs 00037000 00:82 5751504 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.text_3.4.0.v20080605-1800.jar
    3249d000-324a4000 r-xs 00044000 00:82 5751279 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.debug.core_3.4.0.v20080612.jar
    324a4000-324a9000 r-xs 00041000 00:82 5751415 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.jdt.launching_3.4.0.v20080529-1300.jar
    324a9000-324ac000 ---p 324a9000 00:00 0
    324ac000-324fa000 rwxp 324ac000 00:00 0
    324fa000-324fb000 r-xs 00003000 00:82 5751469 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.swt_3.4.0.v3448f.jar
    324fb000-3250e000 r-xs 000eb000 00:82 5751425 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.jface_3.4.0.I20080606-1300.jar
    3250e000-3250f000 r-xs 00001000 00:82 5849359 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.ui.workbench.compatibility_3.2.0.I20080509-2000/compatibility.jar
    3250f000-32552000 r-xs 0037b000 00:82 5751561 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.ui.workbench_3.4.0.I20080606-1300.jar
    32552000-3255a000 r-xs 00056000 00:82 5751471 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.team.core_3.4.0.I20080605.jar
    3255a000-3255d000 ---p 3255a000 00:00 0
    3255d000-325ab000 rwxp 3255d000 00:00 0
    325ab000-325ac000 r-xs 0000c000 00:82 5751397 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.jdt.compiler.tool_1.0.100.v_874.jar
    325ac000-325af000 r-xs 00022000 00:82 5751395 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.jdt.compiler.apt_1.0.100.v20080513-1235.jar
    325af000-325b2000 ---p 325af000 00:00 0
    325b2000-32700000 rwxp 325b2000 00:00 0
    32748000-3274b000 r-xs 0001b000 00:82 5751263 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.core.resources.compatibility_3.4.0.v20080604-1400.jar
    3274b000-3274f000 r-xs 00031000 00:82 5751387 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.help_3.3.100.v20080610.jar
    3274f000-32753000 r-xs 00051000 00:82 5718665 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.pde.build_3.4.0.v20080604/pdebuild.jar
    32753000-32755000 r-xs 00006000 00:82 5751275 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.core.variables_3.2.100.v20080529-1300.jar
    32779000-3277c000 r-xs 00013000 00:82 5751148 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.core.contenttype_3.3.0.v20080604-1400.jar
    3277c000-3277f000 r-xs 0000d000 00:82 5751435 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.osgi.services_3.1.200.v20071203.jar
    3277f000-32781000 r-xs 0000c000 00:82 5751293 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.equinox.frameworkadmin.equinox_1.0.0.v20080529-1225.jar
    32781000-32783000 r-xs 00007000 00:82 5751295 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.equinox.frameworkadmin_1.0.0.v20080430-1750.jar
    32783000-32784000 r-xs 00004000 00:82 5751375 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.equinox.simpleconfigurator.manipulator_1.0.0.v20080427-2136.jar
    32784000-32785000 r-xs 00004000 00:82 5751332 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.equinox.p2.garbagecollector_1.0.0.v20080506-1939.jar
    32785000-32787000 r-xs 00009000 00:82 5751340 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.equinox.p2.metadata_1.0.0.v20080514-1900.jar
    32787000-3278b000 r-xs 00019000 00:82 5751338 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.equinox.p2.metadata.repository_1.0.0.v20080604.jar
    3278b000-3278d000 r-xs 00016000 00:82 5751324 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.equinox.p2.director_1.0.0.v20080604.jar
    3278d000-32791000 r-xs 0001b000 00:82 5751326 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.equinox.p2.engine_1.0.0.v20080522-1735.jar
    32791000-32792000 r-xs 00001000 00:82 5751328 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.equinox.p2.exemplarysetup_1.0.0.v20080427-2136.jar
    32792000-32795000 r-xs 00010000 00:82 5751318 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.equinox.p2.core_1.0.0.v20080530-1237.jar
    32795000-32796000 r-xs 00005000 00:82 5751323 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.equinox.p2.directorywatcher_1.0.0.v20080505-1850.jar
    32796000-32798000 r-xs 00008000 00:82 5751342 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.equinox.p2.reconciler.dropins_1.0.0.v20080611.jar
    32798000-3279b000 r-xs 00014000 00:82 5751271 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.core.runtime.compatibility_3.2.0.v20071008.jar
    3279b000-3279d000 r-xs 00012000 00:82 5751289 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.equinox.app_1.1.0.v20080421-2006.jar
    3279d000-327a0000 r-xs 00012000 00:82 5751258 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.core.jobs_3.4.0.v20080512.jar
    327a0000-327a3000 r-xs 00017000 00:82 5751356 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.equinox.preferences_3.2.200.v20080421-2006.jar
    327a3000-327a5000 r-xs 00004000 00:82 5751268 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.core.runtime.compatibility.auth_3.2.100.v20070502.jar
    327a5000-327a6000 r-xs 00002000 00:82 6014291 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.core.runtime.compatibility.registry_3.2.200.v20080610/runtime_registry_compatibility.jar
    327a6000-327aa000 r-xs 00027000 00:82 5751362 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.equinox.registry_3.4.0.v20080516-0950.jar
    327aa000-327ac000 r-xs 0000f000 00:82 5751273 /folk/mpauna/surf_eclipse_34/plugins/org.eclipse.core.runtime_3.4.0.v20080512.jar
    327ac000-327af000 r-xs 00015000 00:82 5751291 /folk

    Same problem in tomcat 5.0.19, not using Chiper but simply using the manager to stop and restart an application. It happen when I change a jar with the web app started and then I try to stop and restart it.
    normally reload works.
    It is not a deterministic behaviour.
    Stefano.

  • Getting class not found error running java application using OIM libraries

    Hi,
    I have created a java application in which I access OIM libraries to fetch user list and then assign user roles. As i run the application it generates exception and program crashes. However, I am using the same libraries in OIM adapters and it is working fine. Following is the exception message i am getting.
    Caused by: java.lang.NoClassDefFoundError: org/springframework/jndi/JndiTemplate
    at oracle.iam.platform.OIMClient.<init>(OIMClient.java:83)
    at RoleAssignment.RoleAssignment.getUserAndChangePassword(RoleAssignment.java:143)
    at RoleAssignment.RoleAssignment.execute(RoleAssignment.java:81)
    at RoleAssignment.RoleAssignment.main(RoleAssignment.java:36)
    ... 5 more
    Caused by: java.lang.ClassNotFoundException: org.springframework.jndi.JndiTemplate
    at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:248)

    Hi,
    I resolved the problem by making spring.jar part of my executable jar file. I have added oimclient.jar, spring.jar, wlfullclient.jar, commons-logging.jar, and eclipselink.jar part of my executable jar. Now I am getting the error below. I googled it and it mentioned that i should add path of authwl.conf in my run configuration in eclipse. So i added the following line in " -Djava.security.auth.login.config=/u01/oracle/Middleware/Oracle_IDM1/server/CustomExec/authwl.conf " under the VM Arguments section of run configuration, but it continues to give the same error.
    java.lang.SecurityException: Unable to locate a login configuration
         at com.sun.security.auth.login.ConfigFile.<init>(ConfigFile.java:93)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
         at java.lang.Class.newInstance0(Class.java:355)
         at java.lang.Class.newInstance(Class.java:308)
         at javax.security.auth.login.Configuration$3.run(Configuration.java:247)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.login.Configuration.getConfiguration(Configuration.java:242)
         at javax.security.auth.login.LoginContext$1.run(LoginContext.java:237)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.login.LoginContext.init(LoginContext.java:234)
         at javax.security.auth.login.LoginContext.<init>(LoginContext.java:403)
         at Thor.API.Security.LoginHandler.weblogicLoginHandler.login(weblogicLoginHandler.java:58)
         at oracle.iam.platform.OIMClient.login(OIMClient.java:134)
         at oracle.iam.platform.OIMClient.login(OIMClient.java:129)
         at com.infotech.tra.organization.RoleAssignment.getUserAndChangePassword(RoleAssignment.java:213)
         at com.infotech.tra.organization.RoleAssignment.execute(RoleAssignment.java:149)
         at com.infotech.tra.organization.RoleAssignment.main(RoleAssignment.java:49)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at org.eclipse.jdt.internal.jarinjarloader.JarRsrcLoader.main(JarRsrcLoader.java:56)
    Caused by: java.io.IOException: Unable to locate a login configuration
         at com.sun.security.auth.login.ConfigFile.init(ConfigFile.java:250)
         at com.sun.security.auth.login.ConfigFile.<init>(ConfigFile.java:91)
         ... 24 more

  • Errors running Java app on Mac OSX

    Hello,
    I've written a Java application and packaged it as a JAR file that runs fine on Windows. When I try to run it on
    Mac OSX, though, I get the following error:
    % java -jar Clavis.jar
    Exception in thread "main" java.lang.NoClassDefFoundError:
    java/awt/KeyEventDispatcher
    at Clavis.main(Clavis.java:7)
    I'm assuming this means that the program needs and is somehow not getting access to the java.awt.* classes it requires. How can I tell it where they are? Is it possible to do this within the JAR file so that users don't have to configure this manually?
    Five dukes for the first good answer!
    Thanks much--
    David

    From Apple's Java FAQ:
    Q: When will Apple have an implementation of J2SE 1.4 available?
    A: A Java 1.4 Developer Preview was released at WWDC2002 to all seeded ADC members. This pre-release has only been qualified against the WWDC Jaguar seed, and has not been qualified against any other seeds/builds, including the final release of Mac OS X 10.2. It is for this reason that the WWDC preview has remained unavailable to ADC members, even though Jaguar has shipped.
    The product development cycle includes plans to seed an additional, more complete prerelease version of J2SE 1.4.1 to developers. Specific dates for releases have not been determined and are in part dependent upon Sun's release schedule. Please note that J2SE 1.4.x will not be available in any form for versions of Mac OS X prior to 10.2.
    If it follows the same pattern as past releases, the answer to your question will probably be months, albeit a low number of them, from Sun's official release date of 1.4.
    -SC

  • Error running java program (testing oracle-character-set-31 against ab?c )

    Hi
    When i run my java program from eclipse , i get these errors : how to correct these errors and run the program
    testing oracle-character-set-31 against <ab?c>
    PASSED LOSSY
    testing oracle-character-set-31 against <XYZ>
    PASSED LOSSY
    testing oracle-character-set-31 against <longlonglonglong...>
    PASSED LOSSY
    testing oracle-character-set-870 against <abc>
    PASSED
    testing oracle-character-set-870 against <ab?c>
    PASSED
    testing oracle-character-set-870 against <XYZ>
    PASSED
    testing oracle-character-set-870 against <longlonglonglong...>
    PASSED
    testing oracle-character-set-871 against <abc>
    PASSED
    testing oracle-character-set-871 against <ab?c>
    PASSED
    testing oracle-character-set-871 against <XYZ>
    PASSED
    testing oracle-character-set-871 against <longlonglonglong...>
    PASSED

    rxg wrote:
    Hi
    When i run my java program from eclipse , i get these errors : how to correct these errors and run the program
    ...Sun's not Oracle (yet). You will have better luck on a forum relating to whatever is producing that "oracle-character-set..." output.
    Edit:
    Although a Google search for "testing oracle-character-set" yields only this thread. Are you sure that output isn't part of your program?
    Edited by: endasil on 7-Oct-2009 3:40 PM

  • Problems of running java program by crontab in Linux

    I have a java application program which runs great when started in command line, or in shell script, or Perl. However, when it is started by crontab in Linux, it stops in the middle when images are to be generated. I guess there might be some settings I need to handle in order to run this java application by crontab. We tried to start the shell script or Perl program in which the java program was invoked, but still didn't work.
    This may be a littler stretching. Does anyone have similar experience and success?
    Thanks in advance.
    ljiang006

    Dear dpz,
    We have used JComponents. Here's the error message I got. Could you further suggest what to do in my crobtap (which is "11 14 * * * java -classpath /home/VeggieB VHpack.VegHealthFrac" ). Looking forward to your reply. Thanks. ljiang006.
    Generate data and image products ...
    Save calibrated (unsmoothed) NDVI and T into Product/NDT/
    Save initial early products into Product/Initial/
    Save temporary products into Product/Tempo/
    Save final update products into Product/Final/
    Save calibrated (unsmoothed) NDVI and T into: Product/NDT/ Exception in thread "main" java.lang.NoClassDefFoundError
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:130)
         at java.awt.GraphicsEnvironment.getLocalGraphicsEnvironment(GraphicsEnvironment.java:62)
         at sun.awt.motif.MToolkit.<clinit>(MToolkit.java:70)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:130)
         at java.awt.Toolkit$2.run(Toolkit.java:712)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.awt.Toolkit.getDefaultToolkit(Toolkit.java:703)
         at java.awt.Component.getToolkitImpl(Component.java:826)
         at java.awt.Component.getToolkit(Component.java:810)
         at java.awt.Component.createImage(Component.java:2564)
         at VHpack.ImageGenerator.createDataImage(ImageGenerator.java:395)
         at VHpack.ImageGenerator.makeImage(ImageGenerator.java:288)
         at VHpack.ImageGenerator.saveImage(ImageGenerator.java:162)
         at VHpack.LVItoProduct.SaveProduct(LVItoProduct.java:146)
         at VHpack.LVItoProduct.generateProducts(LVItoProduct.java:61)
         at VHpack.NoGuiVeg.<init>(NoGuiVeg.java:94)
         at VHpack.VegHealthFrac.main(VegHealthFrac.java:34)

  • Error: could not open `C:\Program Files\Java\j2re1.4.0_01\lib\i386\jvm.cfg'

    I am geting this error when I enter the "java" command:
    "Error: could not open `C:\Program Files\Java\j2re1.4.0_01\lib\i386\jvm.cfg'"
    I have configured the PATH variable (Windows 2000) and "javac" works. I cannot, however, get my programs to run because of the error every time I type "java". Also, I did not install my JDK / SDK to the directory in which the computer is looking for the "java" cammand (ie. it is not in 'Program Files'...). If anyone can help, it would be greatly appreciated. Thank you.

    Try using the -cp switch on the command line. For example:java -cp . MyProgramIf this corrects the problem, you need to set the classpath variable
    as well as the path.
    Mark

  • JVM Error while running java application through Java Webstart

    Hi All,
    While running java application through Webstart, we got the following error log and application is not running. I am not sure why this is happened? Can anyone help me out to resolve this problem?
    Help Regarding this will be highly appreciated.
    Thanks In advance.
    Bala
    Error in Log File:
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # Internal Error (53545542324F5554494E45530E435050008C), pid=684, tid=9424
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_11-b03 mixed mode)
    --------------- T H R E A D ---------------
    Current thread (0x00345a60): JavaThread [_thread_in_vm, id=9424]
    Stack: [0x00030000,0x00070000), sp=0x0006f9a4, free space=254k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    V [jvm.dll+0x12430d]
    V [jvm.dll+0x6366e]
    V [jvm.dll+0x636a3]
    V [jvm.dll+0x10073c]
    V [jvm.dll+0x7859b]
    V [jvm.dll+0x919fc]
    C [javaw.exe+0x2120]
    C [javaw.exe+0x11bb]
    C [javaw.exe+0x3151]
    C [kernel32.dll+0x123e5]
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    Other Threads:
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 2304K, used 42K [0x02a60000, 0x02cd0000, 0x051c0000)
    eden space 2112K, 2% used [0x02a60000, 0x02a6a908, 0x02c70000)
    from space 192K, 0% used [0x02c70000, 0x02c70000, 0x02ca0000)
    to space 192K, 0% used [0x02ca0000, 0x02ca0000, 0x02cd0000)
    tenured generation total 30272K, used 0K [0x051c0000, 0x06f50000, 0x22a60000)
    the space 30272K, 0% used [0x051c0000, 0x051c0000, 0x051c0200, 0x06f50000)
    compacting perm gen total 8192K, used 409K [0x22a60000, 0x23260000, 0x26a60000)
    the space 8192K, 4% used [0x22a60000, 0x22ac64d0, 0x22ac6600, 0x23260000)
    No shared spaces configured.
    Dynamic libraries:
    0x00400000 - 0x0040d000 C:\Program Files\Java\jre1.5.0_11\bin\javaw.exe
    0x7c800000 - 0x7c8c0000 C:\WINDOWS\system32\ntdll.dll
    0x77e40000 - 0x77f42000 C:\WINDOWS\system32\kernel32.dll
    0x77f50000 - 0x77fec000 C:\WINDOWS\system32\ADVAPI32.dll
    0x77c50000 - 0x77cef000 C:\WINDOWS\system32\RPCRT4.dll
    0x77380000 - 0x77412000 C:\WINDOWS\system32\USER32.dll
    0x77c00000 - 0x77c48000 C:\WINDOWS\system32\GDI32.dll
    0x77ba0000 - 0x77bfa000 C:\WINDOWS\system32\MSVCRT.dll
    0x71c20000 - 0x71c32000 C:\WINDOWS\system32\tsappcmp.dll
    0x76290000 - 0x762ad000 C:\WINDOWS\system32\IMM32.DLL
    0x6d640000 - 0x6d7dd000 C:\Program Files\Java\jre1.5.0_11\bin\client\jvm.dll
    0x76aa0000 - 0x76acd000 C:\WINDOWS\system32\WINMM.dll
    0x71bc0000 - 0x71bc8000 C:\WINDOWS\system32\rdpsnd.dll
    0x771f0000 - 0x77201000 C:\WINDOWS\system32\WINSTA.dll
    0x71c40000 - 0x71c98000 C:\WINDOWS\system32\NETAPI32.dll
    0x76b70000 - 0x76b7b000 C:\WINDOWS\system32\PSAPI.DLL
    0x6d290000 - 0x6d298000 C:\Program Files\Java\jre1.5.0_11\bin\hpi.dll
    0x6d610000 - 0x6d61c000 C:\Program Files\Java\jre1.5.0_11\bin\verify.dll
    0x6d310000 - 0x6d32d000 C:\Program Files\Java\jre1.5.0_11\bin\java.dll
    0x6d630000 - 0x6d63f000 C:\Program Files\Java\jre1.5.0_11\bin\zip.dll
    VM Arguments:
    jvm_args: -Xms32m -Xmx512m -Xbootclasspath/a:C:\Program Files\Java\jre1.5.0_11\lib\javaws.jar;C:\Program Files\Java\jre1.5.0_11\lib\deploy.jar -Djnlpx.home=C:\Program Files\Java\jre1.5.0_11\bin -Djnlpx.splashport=1970 -Djnlpx.jvm="C:\Program Files\Java\jre1.5.0_11\bin\javaw.exe" -Djnlpx.remove=true -Djava.security.policy=file:C:\Program Files\Java\jre1.5.0_11\lib\security\javaws.policy -DtrustProxy=true -Xverify:remote -Djnlpx.heapsize=32m,512m
    java_command: com.sun.javaws.Main C:\DOCUME~1\ssiwach\LOCALS~1\Temp\1\javaws3
    Launcher Type: SUN_STANDARD
    Environment Variables:
    PATH=C:\Program Files\Java\jre1.5.0_11\bin;D:\oracle\ora92\bin;C:\Program Files\Oracle\jre\1.3.1\bin;C:\Program Files\Oracle\jre\1.1.8\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;D:\mysql\bin;"C:\Program Files\Java\jre1.5.0_11\bin"
    USERNAME=ssiwach
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 15 Model 4 Stepping 1, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows Server 2003 family Build 3790 Service Pack 1
    CPU:total 2 (cores per cpu 1, threads per core 2) family 15 model 4 stepping 1, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ht
    Memory: 4k page, physical 2097151k(438060k free), swap 4194303k(5136k free)
    vm_info: Java HotSpot(TM) Client VM (1.5.0_11-b03) for windows-x86, built on Dec 15 2006 01:16:12 by "java_re" with MS VC++ 6.0
    ------------------------------------------------------------------------------------------------------------------

    Hi All,
    While running java application through Webstart, we got the following error log and application is not running. I am not sure why this is happened? Can anyone help me out to resolve this problem?
    Help Regarding this will be highly appreciated.
    Thanks In advance.
    Bala
    Error in Log File:
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # Internal Error (53545542324F5554494E45530E435050008C), pid=684, tid=9424
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_11-b03 mixed mode)
    --------------- T H R E A D ---------------
    Current thread (0x00345a60): JavaThread [_thread_in_vm, id=9424]
    Stack: [0x00030000,0x00070000), sp=0x0006f9a4, free space=254k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    V [jvm.dll+0x12430d]
    V [jvm.dll+0x6366e]
    V [jvm.dll+0x636a3]
    V [jvm.dll+0x10073c]
    V [jvm.dll+0x7859b]
    V [jvm.dll+0x919fc]
    C [javaw.exe+0x2120]
    C [javaw.exe+0x11bb]
    C [javaw.exe+0x3151]
    C [kernel32.dll+0x123e5]
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    Other Threads:
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 2304K, used 42K [0x02a60000, 0x02cd0000, 0x051c0000)
    eden space 2112K, 2% used [0x02a60000, 0x02a6a908, 0x02c70000)
    from space 192K, 0% used [0x02c70000, 0x02c70000, 0x02ca0000)
    to space 192K, 0% used [0x02ca0000, 0x02ca0000, 0x02cd0000)
    tenured generation total 30272K, used 0K [0x051c0000, 0x06f50000, 0x22a60000)
    the space 30272K, 0% used [0x051c0000, 0x051c0000, 0x051c0200, 0x06f50000)
    compacting perm gen total 8192K, used 409K [0x22a60000, 0x23260000, 0x26a60000)
    the space 8192K, 4% used [0x22a60000, 0x22ac64d0, 0x22ac6600, 0x23260000)
    No shared spaces configured.
    Dynamic libraries:
    0x00400000 - 0x0040d000 C:\Program Files\Java\jre1.5.0_11\bin\javaw.exe
    0x7c800000 - 0x7c8c0000 C:\WINDOWS\system32\ntdll.dll
    0x77e40000 - 0x77f42000 C:\WINDOWS\system32\kernel32.dll
    0x77f50000 - 0x77fec000 C:\WINDOWS\system32\ADVAPI32.dll
    0x77c50000 - 0x77cef000 C:\WINDOWS\system32\RPCRT4.dll
    0x77380000 - 0x77412000 C:\WINDOWS\system32\USER32.dll
    0x77c00000 - 0x77c48000 C:\WINDOWS\system32\GDI32.dll
    0x77ba0000 - 0x77bfa000 C:\WINDOWS\system32\MSVCRT.dll
    0x71c20000 - 0x71c32000 C:\WINDOWS\system32\tsappcmp.dll
    0x76290000 - 0x762ad000 C:\WINDOWS\system32\IMM32.DLL
    0x6d640000 - 0x6d7dd000 C:\Program Files\Java\jre1.5.0_11\bin\client\jvm.dll
    0x76aa0000 - 0x76acd000 C:\WINDOWS\system32\WINMM.dll
    0x71bc0000 - 0x71bc8000 C:\WINDOWS\system32\rdpsnd.dll
    0x771f0000 - 0x77201000 C:\WINDOWS\system32\WINSTA.dll
    0x71c40000 - 0x71c98000 C:\WINDOWS\system32\NETAPI32.dll
    0x76b70000 - 0x76b7b000 C:\WINDOWS\system32\PSAPI.DLL
    0x6d290000 - 0x6d298000 C:\Program Files\Java\jre1.5.0_11\bin\hpi.dll
    0x6d610000 - 0x6d61c000 C:\Program Files\Java\jre1.5.0_11\bin\verify.dll
    0x6d310000 - 0x6d32d000 C:\Program Files\Java\jre1.5.0_11\bin\java.dll
    0x6d630000 - 0x6d63f000 C:\Program Files\Java\jre1.5.0_11\bin\zip.dll
    VM Arguments:
    jvm_args: -Xms32m -Xmx512m -Xbootclasspath/a:C:\Program Files\Java\jre1.5.0_11\lib\javaws.jar;C:\Program Files\Java\jre1.5.0_11\lib\deploy.jar -Djnlpx.home=C:\Program Files\Java\jre1.5.0_11\bin -Djnlpx.splashport=1970 -Djnlpx.jvm="C:\Program Files\Java\jre1.5.0_11\bin\javaw.exe" -Djnlpx.remove=true -Djava.security.policy=file:C:\Program Files\Java\jre1.5.0_11\lib\security\javaws.policy -DtrustProxy=true -Xverify:remote -Djnlpx.heapsize=32m,512m
    java_command: com.sun.javaws.Main C:\DOCUME~1\ssiwach\LOCALS~1\Temp\1\javaws3
    Launcher Type: SUN_STANDARD
    Environment Variables:
    PATH=C:\Program Files\Java\jre1.5.0_11\bin;D:\oracle\ora92\bin;C:\Program Files\Oracle\jre\1.3.1\bin;C:\Program Files\Oracle\jre\1.1.8\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;D:\mysql\bin;"C:\Program Files\Java\jre1.5.0_11\bin"
    USERNAME=ssiwach
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 15 Model 4 Stepping 1, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows Server 2003 family Build 3790 Service Pack 1
    CPU:total 2 (cores per cpu 1, threads per core 2) family 15 model 4 stepping 1, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ht
    Memory: 4k page, physical 2097151k(438060k free), swap 4194303k(5136k free)
    vm_info: Java HotSpot(TM) Client VM (1.5.0_11-b03) for windows-x86, built on Dec 15 2006 01:16:12 by "java_re" with MS VC++ 6.0
    ------------------------------------------------------------------------------------------------------------------

  • Out of Memory Error in Java Agents running in lotus notes

    I have a java agent running inside lotus notes jvm. It runs fine for some days but after some days start giving out of memory error and terminates.
    I need to restart agent manager in notes to enable java agent running. Is there a way to catch out of memory error so that on its catch i could restart agent manager.
    Regards,
    Saitu

    Dear Peter,
    The agent is written in java and
    I need to know a way to enter catch block of 'OUTOFMEMORYERROR'.
    My whole code is in a try block with two catches, one for outofmemoryerror and another for exception. When outofmemory error occurs control passes to the exception catch and not outofmemoryerror catch.
    Since out of memory is an error and not an exception, is there a way to catch it or run some code when out of memory occurs.
    Regards,
    Saitu

  • Error when run java file on windows 7 64bit

    unexpected failure: Error:Only x32 JVM supported
    java.io.IOException: Error:Only x32 JVM supported
    at com.adobe.air.ipa.IPAOutputStream.addInitialContent(IPAOutputStream.j
    ava:142)
    at com.adobe.air.ipa.IPAOutputStream.addFile(IPAOutputStream.java:96)
    at com.adobe.air.ADTPackager.createPackage(ADTPackager.java:47)
    at com.adobe.air.ADT.run(ADT.java:176)
    at com.adobe.air.ADT.main(ADT.java:141)
    can anyone help with the error please ?

    Hi thanks your replies I have uninstalled jre-6u20-windows-x64 again and I open the 32 bit version of IE8 and went to the java.com ran the installation checker and is recommended re-U-windows-I-gift-rv I have already downloaded this app and installed. B ut I still tried to install it and the installation process say its already installed. I ran the test applet and everything works fine.
    When I run the java file from cmd
    java -jar fai-packager.jar -package -target ipa-test -storetype pkcs12 -keystore c:/project/iphone_dev.p12 iLife.ipa c:/project/iLife-app.xml -C c:/project/ iLife.swf -C C:/project/icons . -C C:/project Default.png
    I get this error message
    'java' is not recognized as an internal or external command,
    operable program or batch file.
    The only way I can get the java to run is by installing the jre-6u20-windows-x64 update

  • Error in "Run Java migration toolkit", doing a SAP system copy.

    Hi all,
    Migration to new hardware with system copy, get an error in CI installation on "Run Java Migration Toolkit".
    From the sapinst.log:
    ERROR 2009-05-13 12:46:47.188
    FJS-00003  TypeError: ci.getInstanceDir() has no properties (in script NW_Doublestack_CI|ind|ind|ind|ind, line 120276: ???)
    ERROR 2009-05-13 12:46:48.318
    FCO-00011  The step InitPrivateContext with step key |NW_Doublestack_CI|ind|ind|ind|ind|0|0|NW_CI_Instance|ind|ind|ind|ind|12|0|NW_CI_Instance_Configure_Java|ind|ind|ind|ind|4|0|NW_RUN_MIGRATION_CONTROLLER|ind|ind|ind|ind|2|0|InitPrivateContext was executed with status ERROR .
    From the sapinst_dev.log:
    ERROR      2009-05-13 12:46:47.188 [iaxxejsbas.cpp:204]
    FJS-00003  TypeError: ci.getInstanceDir() has no properties (in script NW_Doublestack_CI|ind|ind|ind|ind, line 120276: ???)
    TRACE      2009-05-13 12:46:48.038 [syuxctask.cpp:1382]
               CSyTaskImpl::start(bool)
    A child process has been started. Pid = 23620
    ERROR      2009-05-13 12:46:48.318 [sixxcstepexecute.cpp:951]
    FCO-00011  The step InitPrivateContext with step key |NW_Doublestack_CI|ind|ind|ind|ind|0|0|NW_CI_Instance|ind|ind|ind|ind|12|0|NW_CI_Instance_Configure_Java|ind|ind|ind|ind|4|0|NW_RUN_MIGRATION_CONTROLLER|ind|ind|ind|ind|2|0|InitPrivateContext was executed with status ERROR .
    TRACE      2009-05-13 12:46:48.368 [iaxxgenimp.cpp:752]
                CGuiEngineImp::showMessageBox
    <html> <head> </head> <body> <p> An error occurred while processing service SAP NetWeaver 7.0 Support Release 3 > Software Life-Cycle Options > System Copy > Oracle > Target System Installation > High-Availability System > Based on AS ABAP and AS Java > Central Instance . You may now </p> <ul> <li> choose <i>Retry</i> to repeat the current step. </li> <li> choose <i>View Log</i> to get more information about the error. </li> <li> stop the task and continue with it later. </li> </ul> <p> Log files are written to /tmp/sapinst_instdir/NW04S/LM/COPY/ORA/SYSTEM/HA/AS/CI. </p> </body></html>
    TRACE      2009-05-13 12:46:48.368 [iaxxgenimp.cpp:1255]
               CGuiEngineImp::acceptAnswerForBlockingRequest
    Waiting for an answer from GUI
    I had checked the INSTANCE_NAME parameter, in every profile, and is ok.
    I tried a new instalation, after importing the profiles, and checking the INSTANCE_NAME, but got the same error.
    Please, advice.
    Thanks in advance.
    Best Regards.
    Jorge

    Thanks Manoj for your advice.
    We had already checked the procedures, we are working based on the System Copy Guide: "System Copy for SAP Systems Based on SAP NetWeaver 7.0 SR3 ABAP+Java".
    I had to mention that source and target systems are HP-UX, 11.23, Itanium and the DataBase is Oracle 10.2.02.
    The copy was made from a Central System (ABAP + Java) to a High-Availability System (ABAP + Java), and the problem appeared when copying the Central Instance.
    Thanks in adavance.
    Regards.
    Jorge

  • Java web start error running Asset Editor or any jnlp page

    When I try to launch Asset Editor or Import/Export or any of the jnlp pages that runs using Java Web Start, I get an error. Java 7 Web start starts but It throws “Could not connect to Server. Please check your Java Web Start and Browser proxy settings”.
    I read conflicting opinions on the internet as to what version of JRE/JDK is needed and potentially some issues running Java Web start with Java 7. I have 64-bit java 1.7.0_45 JDK/JRE installed and no other version. I tried installing 32-bit 1.7.0_45 as well. I have tried to run it from 32-bit as well as 64-bit browser also. All situations provide the same error.
    However, when I install JRockit, it seems to work fine. But we cannot use jrockit. We have to use IBM JDK/JRE 7 eventually. Currently, the java web start does not work on Oracle Java as well as IBM JRE.
    Any help is much appreciated.

    I found a solution for this problem. We have to apply patch 17634436.
    https://support.oracle.com/epmos/faces/ui/patch/PatchDetail.jspx?_afrLoop=149081897091441&patchId=17634436&_afrWindowMode=0&_adf.ctrl-state=xfsajjmff_74
    Just thought it will be useful for anyone encountering this problem.

  • [SOLVED]Java error running a .jar file

    Hi. I'm running Arch 64 and I keep getting this error when trying to run
    java -jar TwinkEdit-0.6.9.jar (from twinkle.sourceforge.net -- a flashcard program for palm. This .jar is the desktop editor for the flashcards. It's worked before on Linux ... but that was almost 2 years ago.)
    Exception in thread "AWT-EventQueue-0" java.util.NoSuchElementException
    at java.util.Vector.firstElement(Vector.java:442)
    at org.ekimd.twinkedit.TwinkUI.getJapFont(TwinkUI.java:979)
    at org.ekimd.twinkedit.TwinkUI$DynamicView.<init>(TwinkUI.java:589)
    at org.ekimd.twinkedit.TwinkUI.getDynamicView(TwinkUI.java:815)
    at org.ekimd.twinkedit.TwinkUI.access$1300(TwinkUI.java:88)
    at org.ekimd.twinkedit.TwinkUI$NewAction.actionPerformed(TwinkUI.java:1101)
    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
    at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318)
    at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
    at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)
    at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)
    at java.awt.Component.processMouseEvent(Component.java:6041)
    at javax.swing.JComponent.processMouseEvent(JComponent.java:3265)
    at java.awt.Component.processEvent(Component.java:5806)
    at java.awt.Container.processEvent(Container.java:2058)
    at java.awt.Component.dispatchEventImpl(Component.java:4413)
    at java.awt.Container.dispatchEventImpl(Container.java:2116)
    at java.awt.Component.dispatchEvent(Component.java:4243)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4322)
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3986)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3916)
    at java.awt.Container.dispatchEventImpl(Container.java:2102)
    at java.awt.Window.dispatchEventImpl(Window.java:2440)
    at java.awt.Component.dispatchEvent(Component.java:4243)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:599)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:273)
    at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:183)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:173)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:168)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:160)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:121)
    It happens in both 32 bit (arch32 chroot) and 64 bit jre's exactly the same.
    java -version gives:
    java version "1.6.0_07"
    Java(TM) SE Runtime Environment (build 1.6.0_07-b06)
    Java HotSpot(TM) 64-Bit Server VM (build 10.0-b23, mixed mode)
    (It also doesn't work on Windows, either .... I think it must be a Java version compatibility problem ??)
    Any ideas?
    Thanks, 
    Scott
    Last edited by firecat53 (2008-09-27 14:07:04)

    I gave it a try and got the same error. Then I started looking at the code:
    When you create a new file, the program starts looking for a font which supports japanes (don't ask me why). If it doesn't find any it throws the error you posted above. I was able to create a new file after I installed ttf-bitstream-cyberbit from AUR (first font supporting japanese I could find).
    You should contact the author and submit a bug report. Even if the program really needs japanese fonts, which I doubt, failing like this is just bad.
    Last edited by Garns (2008-09-27 13:26:05)

  • Errors encountered while running Java EE tutorial SRDemo in JDeveloper

    I am using JDeveloper version 10.1.3.1 to run Java EE tutorial (Web Application) - SRDemo for JSF and EJB 3.0, I got the following error messages while running ServiceRequestFacadeClientEmbed to test the data model (tutorial page 44 of 222), please help me fix those errors.
    Thanks a lot for your help. Jan
    Creating a service request // correct output
    setting the status // correct output
    setting the timestamp for request date // correct output
    2007-01-25 15:12:46.915 // correct output
    getting product object with id = 117 // correct output
    Jan 25, 2007 3:12:47 PM oracle.j2ee.rmi.RMIMessages //error out EXCEPTION_ORIGINATES_FROM_THE_REMOTE_SERVER
    WARNING: Exception returned by remote server: {0}
    javax.ejb.EJBException: javax.persistence.PersistenceException: Exception [TOPLINK-28013] (Oracle TopLink Essentials - 2006.8 (Build 060829)): oracle.toplink.essentials.exceptions.EntityManagerSetupExceptionException Description: Attempted to deploy PersistenceUnit [Model] for which predeploy method either had not called or had failed; nested exception is:
    javax.persistence.PersistenceException: Exception [TOPLINK-28013] (Oracle TopLink Essentials - 2006.8 (Build 060829)): oracle.toplink.essentials.exceptions.EntityManagerSetupException
    Exception Description: Attempted to deploy PersistenceUnit [Model] for which predeploy method either had not called or had failed; nested exception is: oracle.oc4j.rmi.OracleRemoteException: javax.persistence.PersistenceException: Exception [TOPLINK-28013] (Oracle TopLink Essentials - 2006.8 (Build 060829)): oracle.toplink.essentials.exceptions.EntityManagerSetupException
    Exception Description: Attempted to deploy PersistenceUnit [Model] for which predeploy method either had not called or had failed; nested exception is:
    javax.persistence.PersistenceException: Exception [TOPLINK-28013] (Oracle TopLink Essentials - 2006.8 (Build 060829)): oracle.toplink.essentials.exceptions.EntityManagerSetupException
    Exception Description: Attempted to deploy PersistenceUnit [Model] for which predeploy method either had not called or had failed
    oracle.oc4j.rmi.OracleRemoteException: javax.persistence.PersistenceException: Exception [TOPLINK-28013] (Oracle TopLink Essentials - 2006.8 (Build 060829)): oracle.toplink.essentials.exceptions.EntityManagerSetupException
    Exception Description: Attempted to deploy PersistenceUnit [Model] for which predeploy method either had not called or had failed
    at com.evermind.server.ejb.EJBUtils.getUserException(EJBUtils.java:346)
    at com.evermind.server.ejb.interceptor.system.AbstractTxInterceptor.convertAndHandleMethodException(AbstractTxInterceptor.java:69)
    at com.evermind.server.ejb.interceptor.system.TxRequiredInterceptor.invoke(TxRequiredInterceptor.java:52)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPool.java:55)
    at com.evermind.server.ejb.StatelessSessionEJBObject.OC4J_invokeMethod(StatelessSessionEJBObject.java:87)
    at ServiceRequestFacade_RemoteProxy_p4gp54.findProductById(Unknown Source)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.evermind.server.rmi.RmiMethodCall.run(RmiMethodCall.java:53)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:595)
    Nested exception is:
    javax.persistence.PersistenceException: Exception [TOPLINK-28013] (Oracle TopLink Essentials - 2006.8 (Build 060829)): oracle.toplink.essentials.exceptions.EntityManagerSetupException
    Exception Description: Attempted to deploy PersistenceUnit [Model] for which predeploy method either had not called or had failed
    at oracle.toplink.essentials.internal.ejb.cmp3.EntityManagerSetupImpl.deploy(EntityManagerSetupImpl.java:195)
    at oracle.toplink.essentials.internal.ejb.cmp3.base.EntityManagerFactoryImpl.getServerSession(EntityManagerFactoryImpl.java:84)
    at oracle.toplink.essentials.internal.ejb.cmp3.base.EntityManagerFactoryImpl.createEntityManagerImpl(EntityManagerFactoryImpl.java:127)
    at oracle.toplink.essentials.internal.ejb.cmp3.EntityManagerFactoryImpl.createEntityManager(EntityManagerFactoryImpl.java:84)
    at com.evermind.server.ejb.persistence.PersistenceUnitImpl.createTempPersistenceContext(PersistenceUnitImpl.java:84)
    at com.evermind.server.ejb.persistence.EntityManagerProxy.createEntityManager(EntityManagerProxy.java:99)
    at com.evermind.server.ejb.persistence.EntityManagerProxy.allocateEntityManager(EntityManagerProxy.java:84)
    at com.evermind.server.ejb.persistence.AbstractEntityManagerProxy.createNamedQuery(AbstractEntityManagerProxy.java:110)
    at com.evermind.server.ejb.persistence.EntityManagerProxy.createNamedQuery(EntityManagerProxy.java:33)
    at org.srdemo.business.ServiceRequestFacadeBean.findProductById(ServiceRequestFacadeBean.java:51)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoinPointImpl.java:35)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.SetContextActionInterceptor.invoke(SetContextActionInterceptor.java:44)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.TxRequiredInterceptor.invoke(TxRequiredInterceptor.java:50)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPool.java:55)
    at com.evermind.server.ejb.StatelessSessionEJBObject.OC4J_invokeMethod(StatelessSessionEJBObject.java:87)
    at ServiceRequestFacade_RemoteProxy_p4gp54.findProductById(Unknown Source)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.evermind.server.rmi.RmiMethodCall.run(RmiMethodCall.java:53)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:595)
    Caused by: Exception [TOPLINK-28013] (Oracle TopLink Essentials - 2006.8 (Build 060829)): oracle.toplink.essentials.exceptions.EntityManagerSetupException
    Exception Description: Attempted to deploy PersistenceUnit [Model] for which predeploy method either had not called or had failed
    at oracle.toplink.essentials.exceptions.EntityManagerSetupException.cannotDeployWithoutPredeploy(EntityManagerSetupException.java:167)
    ... 34 more
    javax.ejb.EJBException: javax.persistence.PersistenceException: Exception [TOPLINK-28013] (Oracle TopLink Essentials - 2006.8 (Build 060829)): oracle.toplink.essentials.exceptions.EntityManagerSetupException
    Exception Description: Attempted to deploy PersistenceUnit [Model] for which predeploy method either had not called or had failed; nested exception is:
    javax.persistence.PersistenceException: Exception [TOPLINK-28013] (Oracle TopLink Essentials - 2006.8 (Build 060829)): oracle.toplink.essentials.exceptions.EntityManagerSetupException
    Exception Description: Attempted to deploy PersistenceUnit [Model] for which predeploy method either had not called or had failed; nested exception is: oracle.oc4j.rmi.OracleRemoteException: javax.persistence.PersistenceException: Exception [TOPLINK-28013] (Oracle TopLink Essentials - 2006.8 (Build 060829)): oracle.toplink.essentials.exceptions.EntityManagerSetupException
    Exception Description: Attempted to deploy PersistenceUnit [Model] for which predeploy method either had not called or had failed; nested exception is:
    javax.persistence.PersistenceException: Exception [TOPLINK-28013] (Oracle TopLink Essentials - 2006.8 (Build 060829)): oracle.toplink.essentials.exceptions.EntityManagerSetupException
    Exception Description: Attempted to deploy PersistenceUnit [Model] for which predeploy method either had not called or had failed
    at com.evermind.server.ejb.EJBUtils.createEJBException(EJBUtils.java:365)
    at com.evermind.server.ejb.EJBUtils.createEJBException(EJBUtils.java:356)
    at com.evermind.server.ejb.AbstractEJBObject.OC4J_handleUncheckedException(AbstractEJBObject.java:396)
    at ServiceRequestFacade_RemoteProxy_p4gp54.findProductById(Unknown Source)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.evermind.server.rmi.RmiMethodCall.run(RmiMethodCall.java:53)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:595)
    Caused by: oracle.oc4j.rmi.OracleRemoteException: javax.persistence.PersistenceException: Exception [TOPLINK-28013] (Oracle TopLink Essentials - 2006.8 (Build 060829)): oracle.toplink.essentials.exceptions.EntityManagerSetupException
    Exception Description: Attempted to deploy PersistenceUnit [Model] for which predeploy method either had not called or had failed; nested exception is:
    javax.persistence.PersistenceException: Exception [TOPLINK-28013] (Oracle TopLink Essentials - 2006.8 (Build 060829)): oracle.toplink.essentials.exceptions.EntityManagerSetupException
    Exception Description: Attempted to deploy PersistenceUnit [Model] for which predeploy method either had not called or had failed
    at com.evermind.server.ejb.EJBUtils.getUserException(EJBUtils.java:346)
    at com.evermind.server.ejb.interceptor.system.AbstractTxInterceptor.convertAndHandleMethodException(AbstractTxInterceptor.java:69)
    at com.evermind.server.ejb.interceptor.system.TxRequiredInterceptor.invoke(TxRequiredInterceptor.java:52)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPool.java:55)
    at com.evermind.server.ejb.StatelessSessionEJBObject.OC4J_invokeMethod(StatelessSessionEJBObject.java:87)
    ... 8 more
    Caused by: javax.persistence.PersistenceException: Exception [TOPLINK-28013] (Oracle TopLink Essentials - 2006.8 (Build 060829)): oracle.toplink.essentials.exceptions.EntityManagerSetupException
    Exception Description: Attempted to deploy PersistenceUnit [Model] for which predeploy method either had not called or had failed
    at oracle.toplink.essentials.internal.ejb.cmp3.EntityManagerSetupImpl.deploy(EntityManagerSetupImpl.java:195)
    at oracle.toplink.essentials.internal.ejb.cmp3.base.EntityManagerFactoryImpl.getServerSession(EntityManagerFactoryImpl.java:84)
    at oracle.toplink.essentials.internal.ejb.cmp3.base.EntityManagerFactoryImpl.createEntityManagerImpl(EntityManagerFactoryImpl.java:127)
    at oracle.toplink.essentials.internal.ejb.cmp3.EntityManagerFactoryImpl.createEntityManager(EntityManagerFactoryImpl.java:84)
    at com.evermind.server.ejb.persistence.PersistenceUnitImpl.createTempPersistenceContext(PersistenceUnitImpl.java:84)
    at com.evermind.server.ejb.persistence.EntityManagerProxy.createEntityManager(EntityManagerProxy.java:99)
    at com.evermind.server.ejb.persistence.EntityManagerProxy.allocateEntityManager(EntityManagerProxy.java:84)
    at com.evermind.server.ejb.persistence.AbstractEntityManagerProxy.createNamedQuery(AbstractEntityManagerProxy.java:110)
    at com.evermind.server.ejb.persistence.EntityManagerProxy.createNamedQuery(EntityManagerProxy.java:33)
    at org.srdemo.business.ServiceRequestFacadeBean.findProductById(ServiceRequestFacadeBean.java:51)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoinPointImpl.java:35)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.SetContextActionInterceptor.invoke(SetContextActionInterceptor.java:44)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.TxRequiredInterceptor.invoke(TxRequiredInterceptor.java:50)
    ... 13 more
    Caused by: Exception [TOPLINK-28013] (Oracle TopLink Essentials - 2006.8 (Build 060829)): oracle.toplink.essentials.exceptions.EntityManagerSetupException
    Exception Description: Attempted to deploy PersistenceUnit [Model] for which predeploy method either had not called or had failed
    at oracle.toplink.essentials.exceptions.EntityManagerSetupException.cannotDeployWithoutPredeploy(EntityManagerSetupException.java:167)
    ... 34 more
    javax.ejb.EJBException: javax.persistence.PersistenceException: Exception [TOPLINK-28013] (Oracle TopLink Essentials - 2006.8 (Build 060829)): oracle.toplink.essentials.exceptions.EntityManagerSetupException
    Exception Description: Attempted to deploy PersistenceUnit [Model] for which predeploy method either had not called or had failed; nested exception is:
    javax.persistence.PersistenceException: Exception [TOPLINK-28013] (Oracle TopLink Essentials - 2006.8 (Build 060829)): oracle.toplink.essentials.exceptions.EntityManagerSetupException
    Exception Description: Attempted to deploy PersistenceUnit [Model] for which predeploy method either had not called or had failed; nested exception is: oracle.oc4j.rmi.OracleRemoteException: javax.persistence.PersistenceException: Exception [TOPLINK-28013] (Oracle TopLink Essentials - 2006.8 (Build 060829)): oracle.toplink.essentials.exceptions.EntityManagerSetupException
    Exception Description: Attempted to deploy PersistenceUnit [Model] for which predeploy method either had not called or had failed; nested exception is:
    javax.persistence.PersistenceException: Exception [TOPLINK-28013] (Oracle TopLink Essentials - 2006.8 (Build 060829)): oracle.toplink.essentials.exceptions.EntityManagerSetupException
    Exception Description: Attempted to deploy PersistenceUnit [Model] for which predeploy method either had not called or had failed
    oracle.oc4j.rmi.OracleRemoteException: javax.persistence.PersistenceException: Exception [TOPLINK-28013] (Oracle TopLink Essentials - 2006.8 (Build 060829)): oracle.toplink.essentials.exceptions.EntityManagerSetupException
    Exception Description: Attempted to deploy PersistenceUnit [Model] for which predeploy method either had not called or had failed
    at com.evermind.server.ejb.EJBUtils.getUserException(EJBUtils.java:346)
    at com.evermind.server.ejb.interceptor.system.AbstractTxInterceptor.convertAndHandleMethodException(AbstractTxInterceptor.java:69)
    at com.evermind.server.ejb.interceptor.system.TxRequiredInterceptor.invoke(TxRequiredInterceptor.java:52)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPool.java:55)
    at com.evermind.server.ejb.StatelessSessionEJBObject.OC4J_invokeMethod(StatelessSessionEJBObject.java:87)
    at ServiceRequestFacade_RemoteProxy_p4gp54.findProductById(Unknown Source)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.evermind.server.rmi.RmiMethodCall.run(RmiMethodCall.java:53)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:595)
    Nested exception is:
    javax.persistence.PersistenceException: Exception [TOPLINK-28013] (Oracle TopLink Essentials - 2006.8 (Build 060829)): oracle.toplink.essentials.exceptions.EntityManagerSetupException
    Exception Description: Attempted to deploy PersistenceUnit [Model] for which predeploy method either had not called or had failed
    at oracle.toplink.essentials.internal.ejb.cmp3.EntityManagerSetupImpl.deploy(EntityManagerSetupImpl.java:195)
    at oracle.toplink.essentials.internal.ejb.cmp3.base.EntityManagerFactoryImpl.getServerSession(EntityManagerFactoryImpl.java:84)
    at oracle.toplink.essentials.internal.ejb.cmp3.base.EntityManagerFactoryImpl.createEntityManagerImpl(EntityManagerFactoryImpl.java:127)
    at oracle.toplink.essentials.internal.ejb.cmp3.EntityManagerFactoryImpl.createEntityManager(EntityManagerFactoryImpl.java:84)
    at com.evermind.server.ejb.persistence.PersistenceUnitImpl.createTempPersistenceContext(PersistenceUnitImpl.java:84)
    at com.evermind.server.ejb.persistence.EntityManagerProxy.createEntityManager(EntityManagerProxy.java:99)
    at com.evermind.server.ejb.persistence.EntityManagerProxy.allocateEntityManager(EntityManagerProxy.java:84)
    at com.evermind.server.ejb.persistence.AbstractEntityManagerProxy.createNamedQuery(AbstractEntityManagerProxy.java:110)
    at com.evermind.server.ejb.persistence.EntityManagerProxy.createNamedQuery(EntityManagerProxy.java:33)
    at org.srdemo.business.ServiceRequestFacadeBean.findProductById(ServiceRequestFacadeBean.java:51)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoinPointImpl.java:35)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.SetContextActionInterceptor.invoke(SetContextActionInterceptor.java:44)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.TxRequiredInterceptor.invoke(TxRequiredInterceptor.java:50)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPool.java:55)
    at com.evermind.server.ejb.StatelessSessionEJBObject.OC4J_invokeMethod(StatelessSessionEJBObject.java:87)
    at ServiceRequestFacade_RemoteProxy_p4gp54.findProductById(Unknown Source)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.evermind.server.rmi.RmiMethodCall.run(RmiMethodCall.java:53)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:595)
    Caused by: Exception [TOPLINK-28013] (Oracle TopLink Essentials - 2006.8 (Build 060829)): oracle.toplink.essentials.exceptions.EntityManagerSetupException
    Exception Description: Attempted to deploy PersistenceUnit [Model] for which predeploy method either had not called or had failed
    at oracle.toplink.essentials.exceptions.EntityManagerSetupException.cannotDeployWithoutPredeploy(EntityManagerSetupException.java:167)
    ... 34 more
    javax.ejb.EJBException: javax.persistence.PersistenceException: Exception [TOPLINK-28013] (Oracle TopLink Essentials - 2006.8 (Build 060829)): oracle.toplink.essentials.exceptions.EntityManagerSetupException
    Exception Description: Attempted to deploy PersistenceUnit [Model] for which predeploy method either had not called or had failed; nested exception is:
    javax.persistence.PersistenceException: Exception [TOPLINK-28013] (Oracle TopLink Essentials - 2006.8 (Build 060829)): oracle.toplink.essentials.exceptions.EntityManagerSetupException
    Exception Description: Attempted to deploy PersistenceUnit [Model] for which predeploy method either had not called or had failed; nested exception is: oracle.oc4j.rmi.OracleRemoteException: javax.persistence.PersistenceException: Exception [TOPLINK-28013] (Oracle TopLink Essentials - 2006.8 (Build 060829)): oracle.toplink.essentials.exceptions.EntityManagerSetupException
    Exception Description: Attempted to deploy PersistenceUnit [Model] for which predeploy method either had not called or had failed; nested exception is:
    javax.persistence.PersistenceException: Exception [TOPLINK-28013] (Oracle TopLink Essentials - 2006.8 (Build 060829)): oracle.toplink.essentials.exceptions.EntityManagerSetupException
    Exception Description: Attempted to deploy PersistenceUnit [Model] for which predeploy method either had not called or had failed
    at com.evermind.server.rmi.RMICall.EXCEPTION_ORIGINATES_FROM_THE_REMOTE_SERVER(RMICall.java:109)
    at com.evermind.server.rmi.RMICall.throwRecordedException(RMICall.java:125)
    at com.evermind.server.rmi.RMIClientConnection.obtainRemoteMethodResponse(RMIClientConnection.java:517)
    at com.evermind.server.rmi.RMIClientConnection.invokeMethod(RMIClientConnection.java:461)
    at com.evermind.server.rmi.RemoteInvocationHandler.invoke(RemoteInvocationHandler.java:63)
    at com.evermind.server.rmi.RecoverableRemoteInvocationHandler.invoke(RecoverableRemoteInvocationHandler.java:28)
    at com.evermind.server.ejb.StatelessSessionRemoteInvocationHandler.invoke(StatelessSessionRemoteInvocationHandler.java:43)
    at __Proxy1.findProductById(Unknown Source)
    at org.srdemo.client.ServiceRequestFacadeClientEmbed.main(ServiceRequestFacadeClientEmbed.java:38)
    Caused by: oracle.oc4j.rmi.OracleRemoteException: javax.persistence.PersistenceException: Exception [TOPLINK-28013] (Oracle TopLink Essentials - 2006.8 (Build 060829)): oracle.toplink.essentials.exceptions.EntityManagerSetupException
    Exception Description: Attempted to deploy PersistenceUnit [Model] for which predeploy method either had not called or had failed; nested exception is:
    javax.persistence.PersistenceException: Exception [TOPLINK-28013] (Oracle TopLink Essentials - 2006.8 (Build 060829)): oracle.toplink.essentials.exceptions.EntityManagerSetupException
    Exception Description: Attempted to deploy PersistenceUnit [Model] for which predeploy method either had not called or had failed
    at com.evermind.server.ejb.EJBUtils.getUserException(EJBUtils.java:346)
    at com.evermind.server.ejb.interceptor.system.AbstractTxInterceptor.convertAndHandleMethodException(AbstractTxInterceptor.java:69)
    at com.evermind.server.ejb.interceptor.system.TxRequiredInterceptor.invoke(TxRequiredInterceptor.java:52)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPool.java:55)
    at com.evermind.server.ejb.StatelessSessionEJBObject.OC4J_invokeMethod(StatelessSessionEJBObject.java:87)
    at ServiceRequestFacade_RemoteProxy_p4gp54.findProductById(Unknown Source)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.evermind.server.rmi.RmiMethodCall.run(RmiMethodCall.java:53)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:595)
    Caused by: javax.persistence.PersistenceException: Exception [TOPLINK-28013] (Oracle TopLink Essentials - 2006.8 (Build 060829)): oracle.toplink.essentials.exceptions.EntityManagerSetupException
    Exception Description: Attempted to deploy PersistenceUnit [Model] for which predeploy method either had not called or had failed
    at oracle.toplink.essentials.internal.ejb.cmp3.EntityManagerSetupImpl.deploy(EntityManagerSetupImpl.java:195)
    at oracle.toplink.essentials.internal.ejb.cmp3.base.EntityManagerFactoryImpl.getServerSession(EntityManagerFactoryImpl.java:84)
    at oracle.toplink.essentials.internal.ejb.cmp3.base.EntityManagerFactoryImpl.createEntityManagerImpl(EntityManagerFactoryImpl.java:127)
    at oracle.toplink.essentials.internal.ejb.cmp3.EntityManagerFactoryImpl.createEntityManager(EntityManagerFactoryImpl.java:84)
    at com.evermind.server.ejb.persistence.PersistenceUnitImpl.createTempPersistenceContext(PersistenceUnitImpl.java:84)
    at com.evermind.server.ejb.persistence.EntityManagerProxy.createEntityManager(EntityManagerProxy.java:99)
    at com.evermind.server.ejb.persistence.EntityManagerProxy.allocateEntityManager(EntityManagerProxy.java:84)
    at com.evermind.server.ejb.persistence.AbstractEntityManagerProxy.createNamedQuery(AbstractEntityManagerProxy.java:110)
    at com.evermind.server.ejb.persistence.EntityManagerProxy.createNamedQuery(EntityManagerProxy.java:33)
    at org.srdemo.business.ServiceRequestFacadeBean.findProductById(ServiceRequestFacadeBean.java:51)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoinPointImpl.java:35)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.SetContextActionInterceptor.invoke(SetContextActionInterceptor.java:44)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.TxRequiredInterceptor.invoke(TxRequiredInterceptor.java:50)
    ... 13 more
    Caused by: Exception [TOPLINK-28013] (Oracle TopLink Essentials - 2006.8 (Build 060829)): oracle.toplink.essentials.exceptions.EntityManagerSetupException
    Exception Description: Attempted to deploy PersistenceUnit [Model] for which predeploy method either had not called or had failed
    at oracle.toplink.essentials.exceptions.EntityManagerSetupException.cannotDeployWithoutPredeploy(EntityManagerSetupException.java:167)
    ... 34 more
    Process exited with exit code 0.

    Hmmm ... I'm stuck at exactly the same problem, have you found any workaround by any chance?

Maybe you are looking for

  • Bug in JOIN syntax? (oracle 9i)

    Hi, take these three tables: MASTER (id NUMBER, name VARCHAR2(10)) DETAIL (id NUMBER, master_id NUMBER) SUBDETAIL (id NUMBER, detail_id NUMBER, name VARCHAR(10) When I perform this query: SELECT SUBDETAIL.id as did, MASTER.id as mid FROM SUBDETAIL JO

  • If I buy a new iMac...

    ...will I have to buy all new software? I publish several magazines and produce movies (HD with a Panasonic HPX170). I am now using a seven-year-old G5 (PowerMac) with Adobe CS4 InDesign, Photoshop, Illustrator, Premier, GoLive, etc.; MS Office X; Fi

  • Network update time out

    I've been trying to update to iOS 5 but when I try to update I keep getting a message that the network connection times out.  Any suggestions as to how I should update? Thanks

  • Idoc segment numbers

    Can anyone tell me how idoc segment numbers/order are determined?  I have a rather large ORDERS05 idoc being used to send outbound EDI 850 documents.  This line sequence number is kept in segment E1EDP01, element POSEX). For smaller purchase orders (

  • Flash version 6

    I run Windows 8.1 using Internet Explorer 11. Some software we use by the name of Easyfile, aparantly was designed to work only with Flash Player version 6.45. Is it possible to install the older version ? If so, where can I find it as I do not seem