JVM 1.5.0_06 Classloader not initalizing statics

Hello,
I'm having the problem that classes in java 1.5 do not seem to run
their static elements until the class is first used.
For example in java 1.4 simply making the Class object would cause the
static's to run:
class = a.b.c.TestClass.class
In java 1.5 this no longer happens until you do something like:
variable = a.b.c.TestClass.staticField;
The TestClass contains things like:
static public Object staticField = blah();
I've been searching for information on why this is, or how to have the
class initalize itself without having to know what type of class it is.
Can anyone offer any suggestions?
Thanks in advance,
Kenny

This is a known incompatiblitly. See #5 in http://java.sun.com/j2se/1.5.0/compatibility.html

Similar Messages

  • Applet using JVM 1.5.0_06 causes GDI Object Leaks

    Hi,
    Since the release of 1.5.0_06 our applet has developed a GDI Object leak. Basically, our applet draws on a panel when ever an update is available. The previous versions of the JVM seem fine and th e GDI Objects are stable, but this new version eats the GDIs up really quickly, and never releases them.
    The problem occurs when the applet repaints itself. Calling repaint() or paint() from code works ok with no leaks but as soon as the applet is forced to repaint because of a resize, or because another window has moved over it the GDIs go up by multiples of 10.
    Here is some sample code:
    import java.awt.*;
    import java.applet.*;
    import java.util.Date;
    * <p>Copyright: Copyright (c) 2005</p>
    * <p>Company: </p>
    * @author not attributable
    * @version 1.0
    public class GDIApplet extends Applet {
        //Construct the applet
        public GDIApplet() {
        //Initialize the applet
        public void init() {
            try {
                jbInit();
            } catch (Exception e) {
                e.printStackTrace();
        //Component initialization
         private void jbInit() throws Exception {
             this.setLayout(new BorderLayout());
             this.add(new GDIPanel(), BorderLayout.CENTER);
         public class GDIPanel extends Panel implements Runnable{
        public GDIPanel() {
            Thread t = new Thread(this,"SPGPaintTimer");
            t.start();
        public void paint(Graphics g){
            if( g == null){
                return;
            System.out.println("Paint on thread: " + Thread.currentThread().getName());
            Date d = new Date();
            Rectangle bounds = getBounds();
            g.setColor(Color.black);
            g.fillRect(0,0, bounds.width, bounds.height);
            FontMetrics fm = g.getFontMetrics();
            String val = d.toString();
            int width = fm.stringWidth(val);
            int height = fm.getHeight();
            int x = (bounds.width - width) /2;
            int y = (bounds.height/2) - height;
            g.setColor(Color.yellow);
            g.drawString(val,x,y);
        public void run(){
            while(true){
                try {
                    Thread.sleep(1000);
                } catch (InterruptedException ex) {
                repaint();
    }

    Hi there.
    I've found this page by googling.
    I am not a Java developer, but am using a third party java applet on my web page for mapping.
    Funnily enough, I've been trying to hunt down a memory leak thats occuring in IE (not any other browser).
    It only occurs when the applet is physically visible on the page, and the user is using the Sun JVM (1.5.0_06). The GDI object count increases every time I mouseover a link in a tree.
    This does not occur with the MS JVM.
    Unfortunately I do not have access to the applet source code, but I'm wondering if its related to your problem.
    Have you had any success on this?
    Thanks.

  • Error log: mod_rewrite & mod_jk: could not init JK log lock in child

    I am getting a lot of the below errors repeatably in my error_log.
    Can anyone help me to identify why, how I can identify what's causing them, and how to resolve them, please.
    [Fri Sep 26 10:03:33 2008] [crit] (2)No such file or directory: mod_rewrite: could not init rewrite log lock in child
    [Fri Sep 26 10:03:33 2008] [crit] (2)No such file or directory: mod_jk: could not init JK log lock in child

    I'm getting the same error just after configuring a new group in the server preferences (10.5.5 Server). The default webservice is not working anymore, but it was a few minutes ago.
    [Mon Oct 06 08:31:41 2008] [crit] (13)Permission denied: mod_rewrite: could not init rewrite log lock in child
    [Mon Oct 06 08:32:11 2008] [error] [client 127.0.0.1] (13)Permission denied: access to /server-status denied
    [Mon Oct 06 08:32:11 2008] [error] [client 127.0.0.1] (13)Permission denied: access to /error/HTTP_FORBIDDEN.html.var denied

  • Applet works on eclipse but not on reg browser (not inited error)

    Hi everybody,
    I've just made an applet, but I don't know why it can't be shown. I'm working with Eclipse, and when I run the .java file, everything works fine. It even works fine when I specify parameters through the eclipse build file parameter arguments.
    Now I would like this to work by using the appletviewer and my html file. When I do this, the application doesn't work anymore and I get this error: Start applet not inited and shows loading java Applet failed when I scroll over to the java applet box on the browser. (Mozilla)
    I used this code in the html file:
    <html>
    <head>
    <title>MicroToolBus Example Plugin Applet 2 </title>
    </head>
    <body>
    <h1>MicroToolBus Example Plugin Applet 2 </h1>
    <hr>
    <applet code =MicroToolBus.class width=400 height=100>
    <param name="ModelName" value="edu.vt.vbi.pathport.client.plugin.microarray.MicroarrayModel">
         <param name="DataLocation" value="c:/eclipse/workspace/PathPort/xml/samples/mageml/pmml.xml">
    </applet>
    </hr>
    </body>
    </html>
    which is located at
    C:\eclipse\workspace\PathPort\build\edu\vt\vbi\pathport\client\toolbus\MicroToolBus.html
    The MicroToolBus.class file is located in the same directory. What am I doing wrong. I tried putting the class file and the html in the same directory as the actual .java file of the applet, but that didn't seem to work either. Thanks in advance; your help and suggestions are much appreciated,

    What am I doing wrong?Your getting caught in the Sun/Microsoft war. Numerous casualties. For rehab, see:
    http://www.MartinRinehart.com
    Click "Articles", "Launching Applets".
    Warning: make a big mug of java before you start. This is not trivial stuff.

  • Work area or table not referenced statically in the program

    Hi Friends,
    When i make extended syntax check for my program, i am getting error as this work area or table not referenced statically in the program .
    How can i overcome that .
    Please give solution nfor this .
    Thanx.
    Title was edited by:
            Alvaro Tejada Galindo

    While Rich has already provided you the right solution, I think you are concerned about this error only because of your "Project Standards" - which says no EPC errors.
    So delete the work area or field from your data definitions if you think that it is not being used.
    If you think it being used dynamically put a comment of " #EC NEEDED next to it. The error will now be hidden.
    Regards,
    Srihari

  • I always get an error: applet not inited

    ok here's my code
    public class Payroll extends javax.swing.JApplet {
        /** Initializes the applet Payroll */
        public void init() {
            try {
                java.awt.EventQueue.invokeAndWait(new Runnable() {
                    public void run() {
                        initComponents();
                        //initialize a  frame
                        f = new PFrame();
                        f.setVisible(true);    
            } catch (Exception ex) {
                ex.printStackTrace();
        /** This method is called from within the init() method to
         * initialize the form.
         * WARNING: Do NOT modify this code. The content of this method is
         * always regenerated by the Form Editor.
        // <editor-fold defaultstate="collapsed" desc=" Generated Code ">                         
        private void initComponents() {....} // </editor-fold>                       
        // Variables declaration - do not modify                    
        // End of variables declaration                  
        private RecordInput recordinput;
        private PFrame f;
    }basically i want my applet to create a frame during initialization, its working ok in netbeans but when i tested it in IE it always shows an error saying applet not inited.

    here's my html for testing purposes
    <html>
    <head>
    <title>Payroll App</title>
    </head>
    <body bgcolor="#000000" text="#FF00FF">
    <center>
    This a Java applet:<br>
    <object height=150 width=300
    classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"
    codebase="http://java.sun.com/products/plugin/autodl/j
    install-1_4_0-win.cab">
    <param name="Code"
    value="E:\Payroll\build\classes\payroll\Payroll.class
    >
    You need a Java-enabled browser to see this.
    </object>
    </html>Doesn't look correct. Google on how to create html page for an applet.
    Kaj

  • Reason for not allowing static declarations inside an inner class

    Is the reason for not allowing static declarations inside an inner class is due to the fact that it can never be accessed at a class level as the outer class has to create an instance of the inner class and any attributes/methods of the inner class has to be accessed through that.
    Typically, an instance (non-static) variable can never be accessed in a statement or expression inside a static context but the class variable can be accessed inside a non-static context. Given this, shouldnt the static declarations be allowed inside an inner class?
    Correct me if my understanding is wrong.
    Thanks

    I still couldnt get it clearly. Why i cant i have a static value ( variable ) for all the instances of the inner class irrespective of its enclosing instances of it ( i.e outer class instances). Say in this example below,
    class Outer
    static int i = 0;
    public Inner inner = new Inner();
    class Inner // inner class ( non-static nested class )
    int j = 0;
    static final int k = 2; // compile time constants are allowed
    // ininner class
    public void m1()
    j++;
    System.out.println("j is " + j);
    i++
    System.out.println("i is " + i);
    public static void main(String[] arg)
    Outer outer1 = new Outer();
    outer1.inner.m1(); // j will be 1 & i will be 1
    Outer outer2 = new Outer();
    outer2.inner.m1() // j will be 1 again & i will be 2. But I would
    // want j to be 2. Why is this not allowed?
    Looks like something missing..

  • Why interfaces can not declare static methods?

    Why interfaces can not declare static methods?

    Why are you shouting?
    Is your internet broken?
    [http://www.google.co.uk/search?q=interface+static+methods+java] 2,440,000 hits.

  • I've got JVM(1.5.0_06-b05) crash in solaris.

    hi . everyone.
    i have problem like this..and i have no idea what to do.
    My program is Mailserver.
    It was looked like no problem util before this error.
    * OS: solaris 9 (sparc)
    * JVM: Java HotSpot(TM) Server VM (1.5.0_06-b05)
    # An unexpected error has been detected by HotSpot Virtual Machine:
    #  SIGSEGV (0xb) at pc=0xb45b8e6c, pid=23724, tid=67
    # Java VM: Java HotSpot(TM) Server VM (1.5.0_06-b05 mixed mode)
    # Problematic frame:
    # C  [libresolv.so.2+0x18e6c]
    ---------------  T H R E A D  ---------------
    Current thread (0x002d0a08):  JavaThread "2121610473" [_thread_in_native, id=67]
    siginfo:si_signo=11, si_errno=0, si_code=1, si_addr=0x00000028
    Registers:
    O0=0x00000010 O1=0x00000000 O2=0x00000000 O3=0x00000000
    O4=0x00000000 O5=0x00000000 O6=0xb087ca70 O7=0xb45b8e44
    G1=0xff385150 G2=0x00000001 G3=0x00001ffc G4=0x000b4282
    G5=0xff0123c0 G6=0x00000000 G7=0xfb134200 Y=0x00000000
    PC=0xb45b8e6c nPC=0xb45b8e70
    Top of Stack: (sp=0xb087ca70)
    0xb087ca70:   00000000 f8e90040 00000000 00000000
    0xb087ca80:   00000000 00000000 00000000 00000000
    0xb087ca90:   00000000 00000000 00000000 00000000
    0xb087caa0:   00000000 00000000 b087cad0 b45b785c
    0xb087cab0:   b4690d44 00000001 00000000 00000000
    0xb087cac0:   00000000 00000000 b087caf0 b46a4094
    0xb087cad0:   00000000 00000000 00000000 00000000
    0xb087cae0:   00000000 00000000 00000000 00000000
    Instructions: (pc=0xb45b8e6c)
    0xb45b8e5c:   80 a2 20 00 12 80 00 23 01 00 00 00 d0 04 60 00
    0xb45b8e6c:   e0 02 20 18 9f c4 00 00 01 00 00 00 90 90 00 08
    Stack: [0xb0800000,0xb0880000),  sp=0xb087ca70,  free space=498k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C  [libresolv.so.2+0x18e6c]
    C  [libresolv.so.2+0x17864]  res_gethostbyaddr+0xc
    C  [nss_dns.so.1+0xd4c]
    C  [nss_dns.so.1+0xfa4]
    C  [libc.so.1+0x4e844]  _nss_search+0x1e0
    C  [libnsl.so.1+0x39004]  _switch_gethostbyaddr_r+0x58
    C  [libnsl.so.1+0x356b4]
    C  [libnsl.so.1+0x386cc]  _get_hostserv_inetnetdir_byaddr+0x1dc
    C  [libnsl.so.1+0x34b60]  gethostbyaddr_r+0xa0
    C  [libnet.so+0x5124]  Java_java_net_Inet4AddressImpl_getHostByAddr+0xb8
    j  java.net.Inet4AddressImpl.getHostByAddr([B)Ljava/lang/String;+1185420064
    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
    v  ~C2IAdapter
    J  com.r3s.spambreaker.XFSmtpMessageFilterHandler2.initialize()V
    J  com.r3s.spambreaker.XFSmtpMessageFilterHandler2.handle()V
    v  ~I2CAdapter
    j  com.r3s.xdk.xserver.connection.HandlerWorker.run(Ljava/lang/Object;)V+6
    j  com.r3s.xdk.xserver.thread.Pool$WorkerThread.run()V+71
    v  ~StubRoutines::call_stub
    V  [libjvm.so+0x19a810]
    V  [libjvm.so+0x2c31a4]
    V  [libjvm.so+0x2e2708]
    V  [libjvm.so+0x2de2a4]
    V  [libjvm.so+0x664248]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    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
    v  ~C2IAdapter
    J  com.r3s.spambreaker.XFSmtpMessageFilterHandler2.initialize()V
    J  com.r3s.spambreaker.XFSmtpMessageFilterHandler2.handle()V
    v  ~I2CAdapter
    j  com.r3s.xdk.xserver.connection.HandlerWorker.run(Ljava/lang/Object;)V+6
    j  com.r3s.xdk.xserver.thread.Pool$WorkerThread.run()V+71
    v  ~StubRoutines::call_stub
    ---------------  P R O C E S S  ---------------
    Java Threads: ( => current thread )
      0x00036538 JavaThread "DestroyJavaVM" [_thread_blocked, id=1]
      0x00a72f38 JavaThread "Thread-10" [_thread_in_native, id=84]
      0x00a71558 JavaThread "7450855021" [_thread_in_native, id=83]
      0x00a71860 JavaThread "1516534536" [_thread_in_native, id=82]
      0x00a707f0 JavaThread "9393897576" [_thread_in_native, id=81]
      0x00a6f130 JavaThread "2865377159" [_thread_in_native, id=80]
      0x00a6f4c8 JavaThread "7529729961" [_thread_in_native, id=79]
      0x0053eee8 JavaThread "9926731816" [_thread_in_native, id=78]
      0x0053ff00 JavaThread "5532499574" [_thread_in_native, id=77]
      0x0053ddb0 JavaThread "7225846510" [_thread_in_native, id=76]
      0x0079b090 JavaThread "4442919985" [_thread_in_native, id=75]
      0x0079a458 JavaThread "7010700011" [_thread_blocked, id=74]
      0x00799800 JavaThread "8642132835" [_thread_in_native, id=73]
      0x007979d0 JavaThread "7923489016" [_thread_in_native, id=71]
      0x00796510 JavaThread "3555877246" [_thread_in_native, id=70]
      0x00a6e2b0 JavaThread "5154279132" [_thread_in_native, id=69]
      0x005411e0 JavaThread "3508530752" [_thread_in_native, id=68]
    =>0x002d0a08 JavaThread "2121610473" [_thread_in_native, id=67]
      0x00554e28 JavaThread "7350886324" [_thread_blocked, id=66]
      0x00555e08 JavaThread "9290136554" [_thread_in_native, id=65]
      0x00555010 JavaThread "8984066911" [_thread_in_native, id=64]
      0x00553b90 JavaThread "5845618266" [_thread_in_native, id=63]
      0x002d1b30 JavaThread "3165077244" [_thread_in_native, id=62]
      0x002d0d38 JavaThread "2443537654" [_thread_in_native, id=61]
      0x00be8820 JavaThread "7659714069" [_thread_blocked, id=60]
      0x00be7e70 JavaThread "0625812199" [_thread_in_native, id=59]
      0x00500cc8 JavaThread "6676120183" [_thread_in_native, id=58]
      0x00be2750 JavaThread "5601035221" [_thread_in_native, id=57]
      0x00bcada8 JavaThread "5438351717" [_thread_in_native, id=56]
      0x00502bd8 JavaThread "4309035462" [_thread_in_native, id=54]
      0x00be5598 JavaThread "0683183092" [_thread_in_native, id=53]
      0x00be3958 JavaThread "5277114581" [_thread_in_native, id=52]
      0x00bce7c0 JavaThread "3794078786" [_thread_in_native, id=51]
      0x00bcc940 JavaThread "2690904115" [_thread_in_native, id=50]
      0x00bca190 JavaThread "4845582462" [_thread_in_native, id=49]
      0x00bc9e20 JavaThread "1523908325" [_thread_in_native, id=48]
      0x00501cd0 JavaThread "3061514810" [_thread_in_native, id=47]
      0x00500ea8 JavaThread "5960813302" [_thread_in_native, id=46]
      0x002d3668 JavaThread "0713414766" [_thread_in_native, id=45]
      0x0043d0e8 JavaThread "6123599388" [_thread_in_native, id=44]
      0x00503388 JavaThread "8383254679" [_thread_in_native, id=43]
      0x00bd19d8 JavaThread "Worker#0" [_thread_blocked, id=42]
      0x002ceeb8 JavaThread "RETRY" [_thread_blocked, id=37]
      0x0043c328 JavaThread "1067633602" [_thread_blocked, id=36]
      0x0043b430 JavaThread "7679054645" [_thread_blocked, id=35]
      0x0043ab38 JavaThread "3312633360" [_thread_blocked, id=34]
      0x00833428 JavaThread "8517838827" [_thread_blocked, id=33]
      0x008326d0 JavaThread "8741043287" [_thread_blocked, id=32]
      0x008319a8 JavaThread "2569843374" [_thread_blocked, id=31]
      0x00b33c08 JavaThread "4072676748" [_thread_in_native, id=30]
      0x00b32eb0 JavaThread "1615745334" [_thread_blocked, id=29]
      0x00830d68 JavaThread "6548460102" [_thread_blocked, id=28]
      0x00831640 JavaThread "2955677343" [_thread_blocked, id=27]
      0x006bad28 JavaThread "1067633602" [_thread_blocked, id=26]
      0x0068d188 JavaThread "3312633360" [_thread_blocked, id=25]
      0x00ad1ca0 JavaThread "2569843374" [_thread_blocked, id=24]
      0x00ad17e8 JavaThread "4072676748" [_thread_blocked, id=23]
      0x00a65770 JavaThread "6548460102" [_thread_blocked, id=22]
      0x002f43d0 JavaThread "BOARD_UPDATER_IP" [_thread_blocked, id=21]
      0x003595a8 JavaThread "Thread-3" [_thread_blocked, id=20]
      0x0081db18 JavaThread "Thread-2" [_thread_blocked, id=19]
      0x004656d8 JavaThread "Thread-1" [_thread_blocked, id=18]
      0x0030dbe8 JavaThread "Thread-0" [_thread_blocked, id=17]
      0x00172a20 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=15]
      0x00171970 JavaThread "CompilerThread1" daemon [_thread_blocked, id=14]
      0x001702f8 JavaThread "CompilerThread0" daemon [_thread_blocked, id=13]
      0x0016f488 JavaThread "AdapterThread" daemon [_thread_blocked, id=12]
      0x0016e680 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=11]
      0x0015c400 JavaThread "Finalizer" daemon [_thread_blocked, id=10]
      0x0015b8b8 JavaThread "Reference Handler" daemon [_thread_blocked, id=9]
    Other Threads:
      0x001597d8 VMThread [id=8]
      0x001740b0 WatcherThread [id=16]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    PSYoungGen      total 278016K, used 78638K [0xe3400000, 0xf8c00000, 0xf8c00000)
      eden space 217600K, 30% used [0xe3400000,0xe756e748,0xf0880000)
      from space 60416K, 19% used [0xf5100000,0xf5c5d458,0xf8c00000)
      to   space 67328K, 0% used [0xf0880000,0xf0880000,0xf4a40000)
    PSOldGen        total 700416K, used 289865K [0xb8800000, 0xe3400000, 0xe3400000)
      object space 700416K, 41% used [0xb8800000,0xca3125c0,0xe3400000)
    PSPermGen       total 20480K, used 9345K [0xb4800000, 0xb5c00000, 0xb8800000)
      object space 20480K, 45% used [0xb4800000,0xb5120548,0xb5c00000)
    Dynamic libraries:
    0x00010000      /khu0/resurge/spambreaker/tools/jdk1.5.0/bin/java
    0xff370000      /usr/lib/libthread.so.1
    0xff3fa000      /usr/lib/libdl.so.1
    0xff280000      /usr/lib/libc.so.1
    0xff3a0000      /usr/platform/FJSV,GPUS/lib/libc_psr.so.1
    0xfe800000      /khu0/resurge/spambreaker/tools/jdk1.5.0/jre/lib/sparc/server/libjvm.so
    0xff240000      /usr/lib/libsocket.so.1
    0xff220000      /usr/lib/libsched.so.1
    0xff1f0000      /usr/lib/libCrun.so.1
    0xff1a0000      /usr/lib/libm.so.1
    0xff080000      /usr/lib/libnsl.so.1
    0xff170000      /usr/lib/libmp.so.2
    0xfe7e0000      /khu0/resurge/spambreaker/tools/jdk1.5.0/jre/lib/sparc/native_threads/libhpi.so
    0xfe7b0000      /khu0/resurge/spambreaker/tools/jdk1.5.0/jre/lib/sparc/libverify.so
    0xfe770000      /khu0/resurge/spambreaker/tools/jdk1.5.0/jre/lib/sparc/libjava.so
    0xfe740000      /khu0/resurge/spambreaker/tools/jdk1.5.0/jre/lib/sparc/libzip.so
    0xfe600000      /usr/lib/locale/ko/ko.so.2
    0xfbfe0000      /usr/lib/locale/ko/methods_ko.so.2
    0xf8c10000      /khu0/resurge/spambreaker/tools/jdk1.5.0/jre/lib/sparc/libnet.so
    0xfb110000      /khu0/resurge/spambreaker/tools/xvaccine-2.0.0/v3/lib/libjv3e.so
    0xb3600000      /khu0/resurge/spambreaker/tools/xvaccine/v3/lib/libv3e.so
    0xf8f90000      /khu0/resurge/spambreaker/tools/jdk1.5.0/jre/lib/sparc/libnio.so
    0xf8d90000      /usr/lib/librt.so.1
    0xb47e0000      /usr/lib/libaio.so.1
    0xb47c0000      /usr/lib/libmd5.so.1
    0xb47a0000      /usr/lib/libsendfile.so.1
    0xb46c0000      /usr/lib/nss_files.so.1
    0xb4690000      /usr/lib/nss_dns.so.1
    0xb45a0000      /usr/lib/libresolv.so.2
    VM Arguments:
    jvm_args: -Dsb.name=xfilter -Djava.ext.dirs=/khu0/resurge/spambreaker/xfilter/lib -Xmx1024m -Xms512m -Dxfilter.home=/khu0/resurge/spambreaker/xfilter -Djava.io.tmpdir=/khu0/resurge/spambreaker/xfilter/temp
    java_command: /khu0/resurge/spambreaker/xfilter/bin/xfilter.jar -c /khu0/resurge/spambreaker/conf/spambreaker.properties
    Launcher Type: SUN_STANDARD
    Environment Variables:
    JAVA_HOME=/khu0/resurge/spambreaker/tools/java
    PATH=/:/usr/local/bin:/usr/sbin:/bin:/sbin:/usr/bin:/usr/ucb:/etc:.:/usr/openwin/bin
    LD_LIBRARY_PATH=/khu0/resurge/spambreaker/tools/jdk1.5.0/jre/lib/sparc/server:/khu0/resurge/spambreaker/tools/jdk1.5.0/jre/lib/sparc:/khu0/resurge/spambreaker/tools/jdk1.5.0/jre/../lib/sparc:/khu0/resurge/spambreaker/tools/xvaccine/v3/lib:
    SHELL=/bin/ksh
    Signal Handlers:
    SIGSEGV: [libjvm.so+0x6f0ca8], sa_mask[0]=0x7fbffeff, sa_flags=0x00000004
    SIGBUS: [libjvm.so+0x6f0ca8], sa_mask[0]=0x7fbffeff, sa_flags=0x00000004
    SIGFPE: [libjvm.so+0x275d94], sa_mask[0]=0x7fbffeff, sa_flags=0x0000000c
    SIGPIPE: [libjvm.so+0x275d94], sa_mask[0]=0x7fbffeff, sa_flags=0x0000000c
    SIGILL: [libjvm.so+0x275d94], sa_mask[0]=0x7fbffeff, sa_flags=0x0000000c
    SIGUSR1: [libjvm.so+0x666744], sa_mask[0]=0x00000000, sa_flags=0x00000008
    SIGUSR2: [libjvm.so+0x275d94], sa_mask[0]=0x7fbffeff, sa_flags=0x0000000c
    SIGHUP: SIG_IGN, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGINT: SIG_IGN, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGQUIT: [libjvm.so+0x665424], sa_mask[0]=0x7fbffeff, sa_flags=0x00000004
    SIGTERM: [libjvm.so+0x665424], sa_mask[0]=0x7fbffeff, sa_flags=0x00000004
    ---------------  S Y S T E M  ---------------
    OS:                        Solaris 9 9/04 s9s_u7wos_09 SPARC
               Copyright 2004 Sun Microsystems, Inc.  All Rights Reserved.
                            Use is subject to license terms.
                                 Assembled 29 June 2004
    uname:SunOS 5.9 Generic_118558-22 sun4us  (T2 libthread)
    rlimit: STACK 8192k, CORE infinity, NOFILE 5120, AS infinity
    load average:0.53 0.38 0.44
    CPU:total 6 has_v8, has_v9, has_vis1
    Memory: 8k page, physical 4194304k(668616k free)
    vm_info: Java HotSpot(TM) Server VM (1.5.0_06-b05) for solaris-sparc, built on Nov 10 2005 11:24:16 by unknown with unknown Workshop:0x550----------------------------------------------------------------------------
    thanks in your help.
    Best regards.
    wani.

    hi . everyone.
    i have problem like this..and i have no idea what to do.
    My program is Mailserver.
    It was looked like no problem util before this error.
    * OS: solaris 9 (sparc)
    * JVM: Java HotSpot(TM) Server VM (1.5.0_06-b05)
    # An unexpected error has been detected by HotSpot Virtual Machine:
    #  SIGSEGV (0xb) at pc=0xb45b8e6c, pid=23724, tid=67
    # Java VM: Java HotSpot(TM) Server VM (1.5.0_06-b05 mixed mode)
    # Problematic frame:
    # C  [libresolv.so.2+0x18e6c]
    ---------------  T H R E A D  ---------------
    Current thread (0x002d0a08):  JavaThread "2121610473" [_thread_in_native, id=67]
    siginfo:si_signo=11, si_errno=0, si_code=1, si_addr=0x00000028
    Registers:
    O0=0x00000010 O1=0x00000000 O2=0x00000000 O3=0x00000000
    O4=0x00000000 O5=0x00000000 O6=0xb087ca70 O7=0xb45b8e44
    G1=0xff385150 G2=0x00000001 G3=0x00001ffc G4=0x000b4282
    G5=0xff0123c0 G6=0x00000000 G7=0xfb134200 Y=0x00000000
    PC=0xb45b8e6c nPC=0xb45b8e70
    Top of Stack: (sp=0xb087ca70)
    0xb087ca70:   00000000 f8e90040 00000000 00000000
    0xb087ca80:   00000000 00000000 00000000 00000000
    0xb087ca90:   00000000 00000000 00000000 00000000
    0xb087caa0:   00000000 00000000 b087cad0 b45b785c
    0xb087cab0:   b4690d44 00000001 00000000 00000000
    0xb087cac0:   00000000 00000000 b087caf0 b46a4094
    0xb087cad0:   00000000 00000000 00000000 00000000
    0xb087cae0:   00000000 00000000 00000000 00000000
    Instructions: (pc=0xb45b8e6c)
    0xb45b8e5c:   80 a2 20 00 12 80 00 23 01 00 00 00 d0 04 60 00
    0xb45b8e6c:   e0 02 20 18 9f c4 00 00 01 00 00 00 90 90 00 08
    Stack: [0xb0800000,0xb0880000),  sp=0xb087ca70,  free space=498k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C  [libresolv.so.2+0x18e6c]
    C  [libresolv.so.2+0x17864]  res_gethostbyaddr+0xc
    C  [nss_dns.so.1+0xd4c]
    C  [nss_dns.so.1+0xfa4]
    C  [libc.so.1+0x4e844]  _nss_search+0x1e0
    C  [libnsl.so.1+0x39004]  _switch_gethostbyaddr_r+0x58
    C  [libnsl.so.1+0x356b4]
    C  [libnsl.so.1+0x386cc]  _get_hostserv_inetnetdir_byaddr+0x1dc
    C  [libnsl.so.1+0x34b60]  gethostbyaddr_r+0xa0
    C  [libnet.so+0x5124]  Java_java_net_Inet4AddressImpl_getHostByAddr+0xb8
    j  java.net.Inet4AddressImpl.getHostByAddr([B)Ljava/lang/String;+1185420064
    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
    v  ~C2IAdapter
    J  com.r3s.spambreaker.XFSmtpMessageFilterHandler2.initialize()V
    J  com.r3s.spambreaker.XFSmtpMessageFilterHandler2.handle()V
    v  ~I2CAdapter
    j  com.r3s.xdk.xserver.connection.HandlerWorker.run(Ljava/lang/Object;)V+6
    j  com.r3s.xdk.xserver.thread.Pool$WorkerThread.run()V+71
    v  ~StubRoutines::call_stub
    V  [libjvm.so+0x19a810]
    V  [libjvm.so+0x2c31a4]
    V  [libjvm.so+0x2e2708]
    V  [libjvm.so+0x2de2a4]
    V  [libjvm.so+0x664248]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    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
    v  ~C2IAdapter
    J  com.r3s.spambreaker.XFSmtpMessageFilterHandler2.initialize()V
    J  com.r3s.spambreaker.XFSmtpMessageFilterHandler2.handle()V
    v  ~I2CAdapter
    j  com.r3s.xdk.xserver.connection.HandlerWorker.run(Ljava/lang/Object;)V+6
    j  com.r3s.xdk.xserver.thread.Pool$WorkerThread.run()V+71
    v  ~StubRoutines::call_stub
    ---------------  P R O C E S S  ---------------
    Java Threads: ( => current thread )
      0x00036538 JavaThread "DestroyJavaVM" [_thread_blocked, id=1]
      0x00a72f38 JavaThread "Thread-10" [_thread_in_native, id=84]
      0x00a71558 JavaThread "7450855021" [_thread_in_native, id=83]
      0x00a71860 JavaThread "1516534536" [_thread_in_native, id=82]
      0x00a707f0 JavaThread "9393897576" [_thread_in_native, id=81]
      0x00a6f130 JavaThread "2865377159" [_thread_in_native, id=80]
      0x00a6f4c8 JavaThread "7529729961" [_thread_in_native, id=79]
      0x0053eee8 JavaThread "9926731816" [_thread_in_native, id=78]
      0x0053ff00 JavaThread "5532499574" [_thread_in_native, id=77]
      0x0053ddb0 JavaThread "7225846510" [_thread_in_native, id=76]
      0x0079b090 JavaThread "4442919985" [_thread_in_native, id=75]
      0x0079a458 JavaThread "7010700011" [_thread_blocked, id=74]
      0x00799800 JavaThread "8642132835" [_thread_in_native, id=73]
      0x007979d0 JavaThread "7923489016" [_thread_in_native, id=71]
      0x00796510 JavaThread "3555877246" [_thread_in_native, id=70]
      0x00a6e2b0 JavaThread "5154279132" [_thread_in_native, id=69]
      0x005411e0 JavaThread "3508530752" [_thread_in_native, id=68]
    =>0x002d0a08 JavaThread "2121610473" [_thread_in_native, id=67]
      0x00554e28 JavaThread "7350886324" [_thread_blocked, id=66]
      0x00555e08 JavaThread "9290136554" [_thread_in_native, id=65]
      0x00555010 JavaThread "8984066911" [_thread_in_native, id=64]
      0x00553b90 JavaThread "5845618266" [_thread_in_native, id=63]
      0x002d1b30 JavaThread "3165077244" [_thread_in_native, id=62]
      0x002d0d38 JavaThread "2443537654" [_thread_in_native, id=61]
      0x00be8820 JavaThread "7659714069" [_thread_blocked, id=60]
      0x00be7e70 JavaThread "0625812199" [_thread_in_native, id=59]
      0x00500cc8 JavaThread "6676120183" [_thread_in_native, id=58]
      0x00be2750 JavaThread "5601035221" [_thread_in_native, id=57]
      0x00bcada8 JavaThread "5438351717" [_thread_in_native, id=56]
      0x00502bd8 JavaThread "4309035462" [_thread_in_native, id=54]
      0x00be5598 JavaThread "0683183092" [_thread_in_native, id=53]
      0x00be3958 JavaThread "5277114581" [_thread_in_native, id=52]
      0x00bce7c0 JavaThread "3794078786" [_thread_in_native, id=51]
      0x00bcc940 JavaThread "2690904115" [_thread_in_native, id=50]
      0x00bca190 JavaThread "4845582462" [_thread_in_native, id=49]
      0x00bc9e20 JavaThread "1523908325" [_thread_in_native, id=48]
      0x00501cd0 JavaThread "3061514810" [_thread_in_native, id=47]
      0x00500ea8 JavaThread "5960813302" [_thread_in_native, id=46]
      0x002d3668 JavaThread "0713414766" [_thread_in_native, id=45]
      0x0043d0e8 JavaThread "6123599388" [_thread_in_native, id=44]
      0x00503388 JavaThread "8383254679" [_thread_in_native, id=43]
      0x00bd19d8 JavaThread "Worker#0" [_thread_blocked, id=42]
      0x002ceeb8 JavaThread "RETRY" [_thread_blocked, id=37]
      0x0043c328 JavaThread "1067633602" [_thread_blocked, id=36]
      0x0043b430 JavaThread "7679054645" [_thread_blocked, id=35]
      0x0043ab38 JavaThread "3312633360" [_thread_blocked, id=34]
      0x00833428 JavaThread "8517838827" [_thread_blocked, id=33]
      0x008326d0 JavaThread "8741043287" [_thread_blocked, id=32]
      0x008319a8 JavaThread "2569843374" [_thread_blocked, id=31]
      0x00b33c08 JavaThread "4072676748" [_thread_in_native, id=30]
      0x00b32eb0 JavaThread "1615745334" [_thread_blocked, id=29]
      0x00830d68 JavaThread "6548460102" [_thread_blocked, id=28]
      0x00831640 JavaThread "2955677343" [_thread_blocked, id=27]
      0x006bad28 JavaThread "1067633602" [_thread_blocked, id=26]
      0x0068d188 JavaThread "3312633360" [_thread_blocked, id=25]
      0x00ad1ca0 JavaThread "2569843374" [_thread_blocked, id=24]
      0x00ad17e8 JavaThread "4072676748" [_thread_blocked, id=23]
      0x00a65770 JavaThread "6548460102" [_thread_blocked, id=22]
      0x002f43d0 JavaThread "BOARD_UPDATER_IP" [_thread_blocked, id=21]
      0x003595a8 JavaThread "Thread-3" [_thread_blocked, id=20]
      0x0081db18 JavaThread "Thread-2" [_thread_blocked, id=19]
      0x004656d8 JavaThread "Thread-1" [_thread_blocked, id=18]
      0x0030dbe8 JavaThread "Thread-0" [_thread_blocked, id=17]
      0x00172a20 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=15]
      0x00171970 JavaThread "CompilerThread1" daemon [_thread_blocked, id=14]
      0x001702f8 JavaThread "CompilerThread0" daemon [_thread_blocked, id=13]
      0x0016f488 JavaThread "AdapterThread" daemon [_thread_blocked, id=12]
      0x0016e680 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=11]
      0x0015c400 JavaThread "Finalizer" daemon [_thread_blocked, id=10]
      0x0015b8b8 JavaThread "Reference Handler" daemon [_thread_blocked, id=9]
    Other Threads:
      0x001597d8 VMThread [id=8]
      0x001740b0 WatcherThread [id=16]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    PSYoungGen      total 278016K, used 78638K [0xe3400000, 0xf8c00000, 0xf8c00000)
      eden space 217600K, 30% used [0xe3400000,0xe756e748,0xf0880000)
      from space 60416K, 19% used [0xf5100000,0xf5c5d458,0xf8c00000)
      to   space 67328K, 0% used [0xf0880000,0xf0880000,0xf4a40000)
    PSOldGen        total 700416K, used 289865K [0xb8800000, 0xe3400000, 0xe3400000)
      object space 700416K, 41% used [0xb8800000,0xca3125c0,0xe3400000)
    PSPermGen       total 20480K, used 9345K [0xb4800000, 0xb5c00000, 0xb8800000)
      object space 20480K, 45% used [0xb4800000,0xb5120548,0xb5c00000)
    Dynamic libraries:
    0x00010000      /khu0/resurge/spambreaker/tools/jdk1.5.0/bin/java
    0xff370000      /usr/lib/libthread.so.1
    0xff3fa000      /usr/lib/libdl.so.1
    0xff280000      /usr/lib/libc.so.1
    0xff3a0000      /usr/platform/FJSV,GPUS/lib/libc_psr.so.1
    0xfe800000      /khu0/resurge/spambreaker/tools/jdk1.5.0/jre/lib/sparc/server/libjvm.so
    0xff240000      /usr/lib/libsocket.so.1
    0xff220000      /usr/lib/libsched.so.1
    0xff1f0000      /usr/lib/libCrun.so.1
    0xff1a0000      /usr/lib/libm.so.1
    0xff080000      /usr/lib/libnsl.so.1
    0xff170000      /usr/lib/libmp.so.2
    0xfe7e0000      /khu0/resurge/spambreaker/tools/jdk1.5.0/jre/lib/sparc/native_threads/libhpi.so
    0xfe7b0000      /khu0/resurge/spambreaker/tools/jdk1.5.0/jre/lib/sparc/libverify.so
    0xfe770000      /khu0/resurge/spambreaker/tools/jdk1.5.0/jre/lib/sparc/libjava.so
    0xfe740000      /khu0/resurge/spambreaker/tools/jdk1.5.0/jre/lib/sparc/libzip.so
    0xfe600000      /usr/lib/locale/ko/ko.so.2
    0xfbfe0000      /usr/lib/locale/ko/methods_ko.so.2
    0xf8c10000      /khu0/resurge/spambreaker/tools/jdk1.5.0/jre/lib/sparc/libnet.so
    0xfb110000      /khu0/resurge/spambreaker/tools/xvaccine-2.0.0/v3/lib/libjv3e.so
    0xb3600000      /khu0/resurge/spambreaker/tools/xvaccine/v3/lib/libv3e.so
    0xf8f90000      /khu0/resurge/spambreaker/tools/jdk1.5.0/jre/lib/sparc/libnio.so
    0xf8d90000      /usr/lib/librt.so.1
    0xb47e0000      /usr/lib/libaio.so.1
    0xb47c0000      /usr/lib/libmd5.so.1
    0xb47a0000      /usr/lib/libsendfile.so.1
    0xb46c0000      /usr/lib/nss_files.so.1
    0xb4690000      /usr/lib/nss_dns.so.1
    0xb45a0000      /usr/lib/libresolv.so.2
    VM Arguments:
    jvm_args: -Dsb.name=xfilter -Djava.ext.dirs=/khu0/resurge/spambreaker/xfilter/lib -Xmx1024m -Xms512m -Dxfilter.home=/khu0/resurge/spambreaker/xfilter -Djava.io.tmpdir=/khu0/resurge/spambreaker/xfilter/temp
    java_command: /khu0/resurge/spambreaker/xfilter/bin/xfilter.jar -c /khu0/resurge/spambreaker/conf/spambreaker.properties
    Launcher Type: SUN_STANDARD
    Environment Variables:
    JAVA_HOME=/khu0/resurge/spambreaker/tools/java
    PATH=/:/usr/local/bin:/usr/sbin:/bin:/sbin:/usr/bin:/usr/ucb:/etc:.:/usr/openwin/bin
    LD_LIBRARY_PATH=/khu0/resurge/spambreaker/tools/jdk1.5.0/jre/lib/sparc/server:/khu0/resurge/spambreaker/tools/jdk1.5.0/jre/lib/sparc:/khu0/resurge/spambreaker/tools/jdk1.5.0/jre/../lib/sparc:/khu0/resurge/spambreaker/tools/xvaccine/v3/lib:
    SHELL=/bin/ksh
    Signal Handlers:
    SIGSEGV: [libjvm.so+0x6f0ca8], sa_mask[0]=0x7fbffeff, sa_flags=0x00000004
    SIGBUS: [libjvm.so+0x6f0ca8], sa_mask[0]=0x7fbffeff, sa_flags=0x00000004
    SIGFPE: [libjvm.so+0x275d94], sa_mask[0]=0x7fbffeff, sa_flags=0x0000000c
    SIGPIPE: [libjvm.so+0x275d94], sa_mask[0]=0x7fbffeff, sa_flags=0x0000000c
    SIGILL: [libjvm.so+0x275d94], sa_mask[0]=0x7fbffeff, sa_flags=0x0000000c
    SIGUSR1: [libjvm.so+0x666744], sa_mask[0]=0x00000000, sa_flags=0x00000008
    SIGUSR2: [libjvm.so+0x275d94], sa_mask[0]=0x7fbffeff, sa_flags=0x0000000c
    SIGHUP: SIG_IGN, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGINT: SIG_IGN, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGQUIT: [libjvm.so+0x665424], sa_mask[0]=0x7fbffeff, sa_flags=0x00000004
    SIGTERM: [libjvm.so+0x665424], sa_mask[0]=0x7fbffeff, sa_flags=0x00000004
    ---------------  S Y S T E M  ---------------
    OS:                        Solaris 9 9/04 s9s_u7wos_09 SPARC
               Copyright 2004 Sun Microsystems, Inc.  All Rights Reserved.
                            Use is subject to license terms.
                                 Assembled 29 June 2004
    uname:SunOS 5.9 Generic_118558-22 sun4us  (T2 libthread)
    rlimit: STACK 8192k, CORE infinity, NOFILE 5120, AS infinity
    load average:0.53 0.38 0.44
    CPU:total 6 has_v8, has_v9, has_vis1
    Memory: 8k page, physical 4194304k(668616k free)
    vm_info: Java HotSpot(TM) Server VM (1.5.0_06-b05) for solaris-sparc, built on Nov 10 2005 11:24:16 by unknown with unknown Workshop:0x550----------------------------------------------------------------------------
    thanks in your help.
    Best regards.
    wani.

  • Server 2008 R2 NIC not holding Static IP

    Hello
    I have a Dell 2950, Server 2008 R2 SP-1, it is a DC, DHCP, DNS, WINS, Etc
    Local Area Connection 1 is the only active NIC with:
    IP 10.10.1.50
    SM 255.255.255.0
    PDNS 10.10.1.50
    IPV6 Disabled
    Local Area Connection 2 is disabled
    I had DHCP, DNS, Etc all working fine, the server was down for 2 weeks for a move, it is a DC and the only server (I know, I know, not a good idea)
    When I fired it back up, the static 10.10.1.50 was gone the the NIC defaulted to DHCP
    What would cause this?  I called Dell about anything configured for this, they said there is none,
    Also noticed if I add DG 10.10.1.50 as same (Only 1 server is DC, WINS, DNS, DHCP, the DG returns to empty
    Thanks
    B.

    Hi B.
    Based on your description, please make sure that this is not changed by someone else with admin access to the domain controller. Besides, we can check DHCP logs under Applications and Services Logs\Microsoft\Windows\Dhcp-Client in Event Viewer to see if
    some related logs were logged.
    Moreover, for this question is not related to group policy and more related to network, in order to get better help and analysis, it's recommended that we ask for suggestions in the following forum.
    Platform Networking
    https://social.technet.microsoft.com/Forums/windowsserver/en-US/home?forum=winserverPN
    Best regards,
    Frank Shen

  • Officejet 7110 series wide format does not accept static IP address settings on wired IP4 network

    Install printer successfully on wired network and printer is assigned dynamic IP.  Then attempt to change the dynamic to static IP using EWS in windows internet explorer v11 and windows 7 Pro SP1 64bit.
    On network tab I chouse manual> click suggest IP settings feilds are populated and I enter manual public DNS ip address.  Everytime I click apply but all I get is "invalid Input"
    So frustrating a 5sec job ends up being 5day job.........
    Is this a browser compatibility issue?  Anybody know?
    My router I had for years its older netgear DG834G and the IP address that is suggested is valid
    OK nevermind......Answered my own question.....Thanks HP......Just set your default browser to anything but IE.   You know really how hard can it be to inform users who purchase these printers NOT to use internet explorer vXX as your default browser to SETUP your HP printer......This should be explicit 90% of home users will have IE as their default browser.....Yes I know you get a compatibility dialog appear about your browser but it should not install to an incompatiible brower PERIOD.......force the user to use another......
     But it does.........
    Thanks

    Hello Qw8, welcome to the forums!
    I read your post about not being able to successfully install your Officejet 8600 Plus to your wired network. I will do my best to find suggestions for you to try. I would first like to know which Operating System you are installing the printer on to help me with my research.
    If you haven't already, run the installation (HP Officejet Pro 8600 Plus e-All-in-One Printer - N911g Drivers) with your security and firewalls disabled to see if the proper connection can be made.
    I do see you ask about other resets and there are others however, at this stage they may not be needed. If they are, I can send you a private message at that time with that information.
    Please let me know your OS and we will go from there!
    Have a wonderful weekend
    R a i n b o w 7000I work on behalf of HP
    Click the “Kudos Thumbs Up" at the bottom of this post to say
    “Thanks” for helping!
    Click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution!

  • Report deployed to new server does not display static image

    Hi,
    We have several web sites on a server running Windows Server 2008 R2 Standard, SP1, 64-bit.  It has installed .NET Framework 4 Client Profile and Extended, ver. 4.0.30319 (according to Control Panel->Programs, as well as c:\Windows\Microsoft.NET\Framework).  Two of the sites use many Crystal Reports, most of which include a static image as a logo. This image is embedded in each report; there is no stand-alone image file that gets deployed.
    Recently, we migrated to a new server, running the same version of Windows & .NET Framework.  As near as we can tell, the 2 servers are nearly identical, as far as configuration and permissions, etc. One notable exception is the DefaultAppPool, which is Classic on the original server and Integrated on the new. (When I changed the new server to Classic, the apps failed to run properly.)  The other exception is the old server is on a stand-alone box, while the new server is a virtual machine.
    For one of the apps on the new server, the embedded logo images are not displaying on the page.  Instead, there is a little red X with the word "Image".  For the other app on the new server, the reports display fine.  Furthermore, if I copy one of the "broken" rpt files from the "broken" app to the "good" app, the report displays correctly!  And of course, the same file displays correctly in all circumstances on the old server.
    This suggests to me that there is not a problem with the report file, per se', but rather with the environment to which it is deployed.  Permissions?  If so, where?
    Any suggestions would be much appreciated.
    Thanks.
    --d

    The search string 'crystal red x net' (search box in top right corner) should return a number of KBAs, docs, blogs, etc. See if any of those help.
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter

  • JVM 1.4.2_04 does not support -Xrs on Solaris?

    I am trying to upgrade JVM from 1.4.1_02 to 1.4.2_04. I found that the vm option "-Xrs" is no longer supported in 1.4.2 JVM. When I try to run the program with -Xrs option, JVM throws
    java.lang.IllegalArgumentException: Signal already used by VM: SIGINT
    This is on Solaris 8.
    I understand that -Xrs is introduced in 1.3 JVM to fix the problem that, when user close the console window where program is started, the java program exits.
    With 1.4.2_04, when I removed the -Xrs option, the above problem is not there anymore.
    Did anyone have similar experiences? I am just confused and cannot find any documentation on Sun's web site.

    Thanks for the effort. BTW, does Sun give any
    explanation on this?As of today it is back up.
    No explaination. Given how odd the page was it didn't seem likely that it was just a rolled back version.

  • Assigning Static IP (not local static, internet) to server

    I use linksys router in my office. WRT54GS V4
    I have T1 line and my ISP provides 5 Static IP address.
    DHCP option is turned on in my router. My server is connected to the router.
    If I configure my server with static IP that my ISP provided, my server will not connect to internet.
    It seems to me that only way to assign static IP to my server is to get a switch/hub
    and connect server and my router to this switch/hub.
    Or turn off DHCP option and configure networksetting for each PC n my office. For this case,
    I have to assign some with local IP and some with static IP. Can it work?
    If you have any suggestion, let me know. 
    Thanks.
    Solved!
    Go to Solution.

    The WRT54GS is a consumer router. It does not support multiple public IP addresses.
    The only way it will work is the way you already found: connect a switch to the internet line and then connect the server and the internet port of the WRT to the switch. Of course, you should make sure to configure the firewall on the server very well as it is fully exposed to the internet.
    Otherwise you have to get a business router which supports multiple public IP addresses, e.g. the Cisco Small Business series or better.

  • Jvm 1.5.0_06 crashing while used in tomcat as service

    ANyone ever seen this one.
    JVM crashes while used by tomcat as service. The crash occurs randomly. In this case while writing an index for lucene. Lucene is used within our jackrabbit application. This crash caused the index en thus the data in jackrabbit to become corrupt. All content of repository was therefor useless.
    Tomcat 5.5.17 is installed on a windows 2003 server.
    Does anyone know the cause of this crash. See hs_errpidx.og file below
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x6da727b6, pid=1132, tid=1160
    # Java VM: Java HotSpot(TM) Server VM (1.5.0_06-b05 mixed mode)
    # Problematic frame:
    # V [jvm.dll+0x1f27b6]
    --------------- T H R E A D ---------------
    Current thread (0x26b175d8): JavaThread "CompilerThread0" daemon [_thread_in_native, id=1160]
    siginfo: ExceptionCode=0xc0000005, reading address 0x00000000
    Registers:
    EAX=0x272bf5c4, EBX=0x26dcf1b0, ECX=0x00000000, EDX=0x6db74d28
    ESP=0x26dcf15c, EBP=0x272c1424, ESI=0x272c0d1c, EDI=0x272c0cd8
    EIP=0x6da727b6, EFLAGS=0x00010246
    Top of Stack: (sp=0x26dcf15c)
    0x26dcf15c: 272c0cd8 272c0d1c 6da728bd 272bf5a4
    0x26dcf16c: 272c1424 26dcf1b0 272c1488 00000000
    0x26dcf17c: 272c1424 26dcf280 6da72adf 272c0d1c
    0x26dcf18c: 272c1424 26dcf1b0 26dcf280 272c1424
    0x26dcf19c: 272be300 272c1424 26dcf280 00000000
    0x26dcf1ac: 278b0794 00000000 00000002 276942e0
    0x26dcf1bc: 00000000 6dac5e2f 26dcf280 00000001
    0x26dcf1cc: 0000002e 26dcf3c0 272c1424 6dac5cc7
    Instructions: (pc=0x6da727b6)
    0x6da727a6: 83 78 0c 03 0f 85 87 00 00 00 8b 40 04 8b 48 08
    0x6da727b6: 8b 11 ff 52 28 85 c0 74 78 8b 40 04 8b 08 8b 11
    Stack: [0x26d90000,0x26dd0000), sp=0x26dcf15c, free space=252k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    V [jvm.dll+0x1f27b6]
    Current CompileTask:
    opto:2085 org.apache.lucene.index.IndexReader$1.doBody()Ljava/lang/Object; (99 bytes)
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x27f95fb8 JavaThread "IndexMerger" daemon [_thread_blocked, id=2588]
    0x2737c618 JavaThread "ObservationManager" daemon [_thread_blocked, id=2584]
    0x279fc6c8 JavaThread "IndexMerger" daemon [_thread_blocked, id=192]
    0x27c40a70 JavaThread "ObservationManager" daemon [_thread_blocked, id=1796]
    0x27c40bf8 JavaThread "File Reaper" daemon [_thread_blocked, id=548]
    0x29488c20 JavaThread "IndexMerger" daemon [_thread_blocked, id=2288]
    0x28b8a008 JavaThread "ObservationManager" daemon [_thread_blocked, id=2268]
    0x27ee5e28 JavaThread "TP-Monitor" daemon [_thread_blocked, id=1392]
    0x29427008 JavaThread "TP-Processor4" daemon [_thread_in_native, id=1208]
    0x27641e50 JavaThread "TP-Processor3" daemon [_thread_blocked, id=1320]
    0x27749e08 JavaThread "TP-Processor2" daemon [_thread_blocked, id=2020]
    0x277de008 JavaThread "TP-Processor1" daemon [_thread_blocked, id=1916]
    0x270005e0 JavaThread "http-8080-Monitor" [_thread_blocked, id=1808]
    0x26bff010 JavaThread "http-8080-Processor25" daemon [_thread_in_native, id=1100]
    0x276345a0 JavaThread "http-8080-Processor24" daemon [_thread_blocked, id=1840]
    0x28e82820 JavaThread "http-8080-Processor23" daemon [_thread_blocked, id=1136]
    0x26bb5848 JavaThread "http-8080-Processor22" daemon [_thread_blocked, id=1452]
    0x26f000c0 JavaThread "http-8080-Processor21" daemon [_thread_blocked, id=1460]
    0x26bb4820 JavaThread "http-8080-Processor20" daemon [_thread_blocked, id=1456]
    0x29617648 JavaThread "http-8080-Processor19" daemon [_thread_blocked, id=296]
    0x28af65d0 JavaThread "http-8080-Processor18" daemon [_thread_blocked, id=300]
    0x291b4790 JavaThread "http-8080-Processor17" daemon [_thread_blocked, id=1660]
    0x28b1a7f0 JavaThread "http-8080-Processor16" daemon [_thread_blocked, id=1340]
    0x28b1a5c8 JavaThread "http-8080-Processor15" daemon [_thread_blocked, id=1076]
    0x276ca838 JavaThread "http-8080-Processor14" daemon [_thread_blocked, id=1332]
    0x291bd6b8 JavaThread "http-8080-Processor13" daemon [_thread_blocked, id=1008]
    0x29657630 JavaThread "http-8080-Processor12" daemon [_thread_blocked, id=1028]
    0x29657408 JavaThread "http-8080-Processor11" daemon [_thread_blocked, id=1764]
    0x290197a8 JavaThread "http-8080-Processor10" daemon [_thread_blocked, id=580]
    0x279d2d50 JavaThread "http-8080-Processor9" daemon [_thread_blocked, id=304]
    0x27557600 JavaThread "http-8080-Processor8" daemon [_thread_blocked, id=204]
    0x27150d60 JavaThread "http-8080-Processor7" daemon [_thread_blocked, id=212]
    0x27150a00 JavaThread "http-8080-Processor6" daemon [_thread_blocked, id=232]
    0x27150740 JavaThread "http-8080-Processor5" daemon [_thread_blocked, id=1980]
    0x29869be8 JavaThread "http-8080-Processor4" daemon [_thread_blocked, id=2004]
    0x29869a60 JavaThread "http-8080-Processor3" daemon [_thread_blocked, id=2044]
    0x298698d8 JavaThread "http-8080-Processor2" daemon [_thread_blocked, id=1992]
    0x290a5ab0 JavaThread "http-8080-Processor1" daemon [_thread_blocked, id=1988]
    0x2926b408 JavaThread "ContainerBackgroundProcessor[StandardEngine[Catalina]]" daemon [_thread_blocked, id=1924]
    0x290741e8 JavaThread "RMI TCP Accept-2099" daemon [_thread_in_native, id=1020]
    0x29063df0 JavaThread "GC Daemon" daemon [_thread_blocked, id=1752]
    0x29488228 JavaThread "RMI Reaper" [_thread_blocked, id=1220]
    0x2912dc50 JavaThread "Timer-2" daemon [_thread_blocked, id=692]
    0x274ce768 JavaThread "RMI TCP Accept-0" daemon [_thread_in_native, id=928]
    0x2796ce48 JavaThread "IndexMerger" daemon [_thread_blocked, id=520]
    0x27181e58 JavaThread "Timer-1" daemon [_thread_blocked, id=504]
    0x27546e48 JavaThread "Timer-0" daemon [_thread_blocked, id=484]
    0x274cc618 JavaThread "ObservationManager" daemon [_thread_blocked, id=444]
    0x27469a38 JavaThread "derby.rawStoreDaemon" daemon [_thread_blocked, id=188]
    0x2720ab98 JavaThread "derby.antiGC" daemon [_thread_blocked, id=1432]
    0x26b452d0 JavaThread "Thread-1" [_thread_in_native, id=2016]
    0x26b19750 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=1928]
    0x26b183a8 JavaThread "CompilerThread1" daemon [_thread_blocked, id=1828]
    =>0x26b175d8 JavaThread "CompilerThread0" daemon [_thread_in_native, id=1160]
    0x26b166a0 JavaThread "AdapterThread" daemon [_thread_blocked, id=1296]
    0x0082f730 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=1164]
    0x0082ce90 JavaThread "Finalizer" daemon [_thread_blocked, id=1692]
    0x0082c1f0 JavaThread "Reference Handler" daemon [_thread_blocked, id=460]
    0x003c5a50 JavaThread "main" [_thread_in_native, id=1468]
    Other Threads:
    0x0082a050 VMThread [id=1276]
    0x26b1aa68 WatcherThread [id=2012]
    VM state:at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event])
    [0x003c5170/0x0000013c] Threads_lock - owner thread: 0x0082a050
    [0x003c52f0/0x00000178] Heap_lock - owner thread: 0x26bb5848
    Heap
    PSYoungGen total 47936K, used 32542K [0x22f50000, 0x26830000, 0x26830000)
    eden space 38016K, 65% used [0x22f50000,0x2477cbd8,0x25470000)
    from space 9920K, 78% used [0x25e70000,0x2660adc0,0x26820000)
    to space 10112K, 10% used [0x25470000,0x255840c0,0x25e50000)
    PSOldGen total 76800K, used 59040K [0x06830000, 0x0b330000, 0x22f50000)
    object space 76800K, 76% used [0x06830000,0x0a1d8068,0x0b330000)
    PSPermGen total 30080K, used 29859K [0x02830000, 0x04590000, 0x06830000)
    object space 30080K, 99% used [0x02830000,0x04558e70,0x04590000)
    Dynamic libraries:
    0x00400000 - 0x0041b000      C:\Programme\PLM\tomcat\bin\tomcat5.exe
    0x7c920000 - 0x7c9e6000      C:\WINDOWS\system32\ntdll.dll
    0x7c800000 - 0x7c915000      C:\WINDOWS\system32\kernel32.dll
    0x77e20000 - 0x77eb3000      C:\WINDOWS\system32\USER32.dll
    0x77bd0000 - 0x77c18000      C:\WINDOWS\system32\GDI32.dll
    0x77f30000 - 0x77fdc000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77c20000 - 0x77cbf000      C:\WINDOWS\system32\RPCRT4.dll
    0x77ec0000 - 0x77f12000      C:\WINDOWS\system32\SHLWAPI.dll
    0x77b70000 - 0x77bca000      C:\WINDOWS\system32\msvcrt.dll
    0x7c9f0000 - 0x7d1fd000      C:\WINDOWS\system32\SHELL32.dll
    0x77340000 - 0x77443000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.3790.1830_x-ww_7AE38CCF\comctl32.dll
    0x6d880000 - 0x6dc31000      C:\Programme\PLM\jdk\jre\bin\server\jvm.dll
    0x76990000 - 0x769be000      C:\WINDOWS\system32\WINMM.dll
    0x6d2f0000 - 0x6d2f8000      C:\Programme\PLM\jdk\jre\bin\hpi.dll
    0x76a60000 - 0x76a6b000      C:\WINDOWS\system32\PSAPI.DLL
    0x76e40000 - 0x76e53000      C:\WINDOWS\system32\Secur32.dll
    0x6d6b0000 - 0x6d6bc000      C:\Programme\PLM\jdk\jre\bin\verify.dll
    0x6d370000 - 0x6d38d000      C:\Programme\PLM\jdk\jre\bin\java.dll
    0x6d6d0000 - 0x6d6df000      C:\Programme\PLM\jdk\jre\bin\zip.dll
    0x6d530000 - 0x6d543000      C:\Programme\PLM\jdk\jre\bin\net.dll
    0x71a10000 - 0x71a27000      C:\WINDOWS\system32\WS2_32.dll
    0x71a00000 - 0x71a08000      C:\WINDOWS\system32\WS2HELP.dll
    0x71930000 - 0x71972000      C:\WINDOWS\system32\mswsock.dll
    0x27b20000 - 0x27b7a000      C:\WINDOWS\system32\hnetcfg.dll
    0x718f0000 - 0x718f8000      C:\WINDOWS\System32\wshtcpip.dll
    0x6d550000 - 0x6d559000      C:\Programme\PLM\jdk\jre\bin\nio.dll
    0x68000000 - 0x6802f000      C:\WINDOWS\system32\rsaenh.dll
    0x76dc0000 - 0x76dea000      C:\WINDOWS\system32\DNSAPI.dll
    0x76e60000 - 0x76e67000      C:\WINDOWS\System32\winrnr.dll
    0x76e00000 - 0x76e2f000      C:\WINDOWS\system32\WLDAP32.dll
    0x76e70000 - 0x76e75000      C:\WINDOWS\system32\rasadhlp.dll
    VM Arguments:
    jvm_args: -Dcatalina.base=C:\Programme\PLM\tomcat -Dcatalina.home=C:\Programme\PLM\tomcat -Djava.endorsed.dirs=C:\Programme\PLM\tomcat\common\endorsed -Xmx512M vfprintf
    java_command: <unknown>
    Launcher Type: generic
    Environment Variables:
    PATH=C:\oracle\ora92\jre\1.4.2\bin\client;C:\oracle\ora92\jre\1.4.2\bin;C:\oracle\ora92\bin;C:\Programme\Oracle\jre\1.3.1\bin;C:\Programme\Oracle\jre\1.1.8\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 15 Model 4 Stepping 3, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows Server 2003 family Build 3790 Service Pack 1
    CPU:total 2 family 15, cmov, cx8, fxsr, mmx, sse, sse2, ht
    Memory: 4k page, physical 2097151k(2097151k free), swap 4194303k(4194303k free)
    vm_info: Java HotSpot(TM) Server VM (1.5.0_06-b05) for windows-x86, built on Nov 10 2005 10:53:00 by "java_re" with MS VC++ 6.0

    This is a known incompatiblitly. See #5 in http://java.sun.com/j2se/1.5.0/compatibility.html

Maybe you are looking for

  • No power to Satellite A30 PSA30E

    Hi, I have a Toshiba Satellite A30 (Part No. = PSA30E-00E5-EN) laptop and recently when connected to the mains the battery doesn't charge, in fact it dis-chargers. When the laptop is turned off if you connect the mains the orange battery charging ico

  • How do I copy my photos from one PC to a new one and have them be able to be edited on Photoshop?

    I originally used a data cable to transfer from my old PC (Windows 7) to my new PC, which is also windows 7.   Many of the photos don't transfer. I tried copy the photos to a hard drive.  any of the photos saved in a TIF file, are "broken files" in P

  • Unable to insert hyperlinks in Exchange 2007 OWA messages

    Hi, we have recently moved to Exchange 2007 OWA and users are unable to insert links to shared files on the network.  I was wondering if there might be something in our Windows 7 GPO that is preventing this from happening?

  • Trigger an outbound idoc to sender system after inbound idoc has status 53

    Hi all, We have two different partners (say A and B)which send inbound idoc to ECC of same message type WMMBXY. This updates goods movement. The partner A collects the idocs(WE20 partner profile setting) and partner B trigger's immediately. Now our r

  • OnDisconnect not working as expected on IE7

    I have an application for a poker game which works perfectly in Firefox 1.5 and 2.0, however in IE7 (not too sure about IE6 thou) there is a serious problem. I shall explain.. User logs in. Opens a popup of the game which is just a php script which l