ZipException?-Weblogic6.1-Sp2

I'm gettting the folling error on server start when it is trying to load/bind the
EJB?
"java.util.zip.ZipException: error in opening zip file"
What is this Zip Exception??
How to getrid of this.
Thnx

Hi,
Hmm. This seems strange. Can you post the full stack trace of the
ZipException? Knowing where the Exception is being thrown from may help.
Also, are you able to run ejbc on the jar from the command line?
- Matt
Developer wrote:
Hi Matthew-
Jar file is good and i can able to extract the files.
Do u have any idea?
Thnx.
Matthew Shinn <[email protected]> wrote:
Hi,
It sounds like your jar or ear file may be corrupted. Can you run jar
tf <your.jar>
successfully?
- Matt
Developer wrote:
I'm gettting the folling error on server start when it is trying toload/bind the
EJB?
"java.util.zip.ZipException: error in opening zip file"
What is this Zip Exception??
How to getrid of this.
Thnx

Similar Messages

  • How long load-on-startup servlet stays in weblogic6.1 sp2

    does anybody know how long a load-on-startup servlet exists (before
              gets destroyed) in weblogic6.1 sp2. What i want is in load-on-startup
              servlet, I want to schedule a java.util.Timer and when application
              gets undeployed, i want to cancel that timer. if load-on-startup
              servlet exists for the whole application life span then i could do
              timer.cancel() on the destroy method of load-on-startup servlet.
              any suggestion?
              thanks in adv,
              soumik
              

    You can simply use ServletContextListener instead - that way you do not
              have to worry if (or when) WebLogic decides to destroy the servlet.
              soumik <[email protected]> wrote:
              > does anybody know how long a load-on-startup servlet exists (before
              > gets destroyed) in weblogic6.1 sp2. What i want is in load-on-startup
              > servlet, I want to schedule a java.util.Timer and when application
              > gets undeployed, i want to cancel that timer. if load-on-startup
              > servlet exists for the whole application life span then i could do
              > timer.cancel() on the destroy method of load-on-startup servlet.
              > any suggestion?
              > thanks in adv,
              > soumik
              Dimitri
              

  • Weblogic6.1 SP2 with SUN OS 5.7

              We are having problem in displaying chinese / korean /thai characters display in
              Weblogic6.1 SP2 with SUNOS 5.7 combination. It shows junk characters only.
              However, we dont have any problem of showing chinese / korean / thai characters
              display in Weblogic6.1 SP2 with SUNOS5.6
              Kindly advise
              

    Hmm, sorry about that, my misstake, that line is still there from an erlier attempt to use windowlisteners instead ... that line should not be there ...

  • Clustering on Weblogic6.0sp1/sp2

              Hi,
              Anybody successfully deployed application in to cluster on Weblogic6.0sp1/sp2
              and im-memory-replication working fine?
              Thanks
              Venkat
              

    Venkat,
              What exception are you getting?
              Venkat wrote:
              > Hi,
              >
              > Anybody successfully deployed application in to cluster on Weblogic6.0sp1/sp2
              > and im-memory-replication working fine?
              >
              > Thanks
              > Venkat
              

  • Running Weblogic6.0 SP2 as a Service on Windows 2000 failes!?

    I installed j2sdk1.3.1. I have allso checked 'Interact with desktop' box and inserted
    -Xrs option in
    'set CMDLINE' variable in installNtService.cmd - file. Despite all these Service
    dies after 10 seconds.
    What else can I to do?

    Another thing to consider is that you have not set the password in the
    installNTService.cmd.
    To do this add the following:
    rem *** Install the service
    "D:\weblogic\wlserver6.0\bin\beasvc" -install -svcname:myserver -javahome:"D
    :\weblogic\jdk130" -execdir:"D:\weblogic\wlserver6.0" -extrapath:"D:\weblogi
    c\wlserver6.0\bin" -cmdline:%CMDLINE% -password:"yourpwdhere"
    Notice the -password:"yourpwdhere"
    Regards,
    Eric
    "Jarkko Senne" <[email protected]> wrote in message
    news:3b7a1a93$[email protected]..
    >
    I installed j2sdk1.3.1. I have allso checked 'Interact with desktop' boxand inserted
    -Xrs option in
    'set CMDLINE' variable in installNtService.cmd - file. Despite all theseService
    dies after 10 seconds.
    What else can I to do?

  • Weblogic 6.1 sp2 "No suitable driver" error

    We have weblogic6.1 sp2 installed on a Windows NT box .
    The config.xml has the following entry :
    <JDBCConnectionPool CapacityIncrement="1"
    DriverName="weblogic.jdbc.oci.Driver" InitialCapacity="4"
    MaxCapacity="8" Name="TrainingPool"
    Password="XXXX"
    Properties="user=XXXXX;server=yyyyy" Targets="myserver" URL="jdbc:weblogic:oracle:mons817"/>
    When weblogic is started, the connection pool TrainingPool is created fine with initial
    4 connections .
    However, when we try to connect to the connection pool using this piece of code in
    an entity bean :
    DriverManager.getConnection("jdbc:weblogic:jts:TrainingPool")
    we get this error : "No suitable Driver"
    CLIENT DEBUG - Finder Error in CClassTracking javax.ejb.FinderException: java.sql.
    SQLException: No suitable driver
    Start server side stack trace:
    javax.ejb.FinderException: java.sql.SQLException: No suitable driver
    at teamscape.server.entities.EClassTrackingBean.EClassTrackingBean._select
    Anyone has any ideas on what could be wrong ?
    Thx,
    ~sanil

    Sanil Pillai wrote:
    We have weblogic6.1 sp2 installed on a Windows NT box .
    The config.xml has the following entry :
    <JDBCConnectionPool CapacityIncrement="1"
    DriverName="weblogic.jdbc.oci.Driver" InitialCapacity="4"
    MaxCapacity="8" Name="TrainingPool"
    Password="XXXX"
    Properties="user=XXXXX;server=yyyyy" Targets="myserver" URL="jdbc:weblogic:oracle:mons817"/>
    When weblogic is started, the connection pool TrainingPool is created fine with initial
    4 connections .
    However, when we try to connect to the connection pool using this piece of code in
    an entity bean :
    DriverManager.getConnection("jdbc:weblogic:jts:TrainingPool")Hi. Don't use DriverManager. It isn't causing the problem, but it does cause other ones. Do this:
    Driver d = (Driver)Class.forName("weblogic.jdbc.jts.Driver").newInstance();
    conn = d.connect("jdbc:weblogic:jts:TrainingPool", null);
    Joe
    >
    we get this error : "No suitable Driver"
    CLIENT DEBUG - Finder Error in CClassTracking javax.ejb.FinderException: java.sql.
    SQLException: No suitable driver
    Start server side stack trace:
    javax.ejb.FinderException: java.sql.SQLException: No suitable driver
    at teamscape.server.entities.EClassTrackingBean.EClassTrackingBean._select
    Anyone has any ideas on what could be wrong ?
    Thx,
    ~sanil

  • Connection Pooling and JSP Custom Tag Library - is code (inside) the best way/correc?

    Hi, can anyone advise as to whether my tag library code (based
    on Apache Jakarta Project) will actually achieve connection
    pooling functionality across my entire JSP based application? I
    am slightly concerned that my OracleConnectionCacheImpl object
    may exist multiple times, hence rendering my conection pooling
    attempt useless.
    package com.solved.tag.dbtags.connection;
    import java.io.IOException;
    import java.sql.Connection;
    import java.sql.SQLException;
    import javax.servlet.jsp.tagext.TagSupport;
    import javax.servlet.jsp.JspTagException;
    import javax.sql.DataSource;
    import javax.naming.InitialContext;
    import javax.naming.NamingException;
    import oracle.jdbc.pool.OracleConnectionCacheImpl;
    * <p>JSP tag connection, used to get a
    * java.sql.Connection object.</p>
    * <p>JSP Tag Lib Descriptor
    * <pre>
    * &lt;name>connection&lt;/name>
    &lt;tagclass>com.solved.tag.dbtags.connection.ConnectionTag&lt;/t
    agclass>
    * &lt;bodycontent>JSP&lt;/bodycontent>
    &lt;teiclass>com.solved.tag.dbtags.connection.ConnectionTEI&lt;/t
    eiclass>
    * &lt;info>Opens a connection based on a jndiName.&lt;/info>
    * &lt;attribute>
    * &lt;name>id&lt;/name>
    * &lt;required>true&lt;/required>
    * &lt;rtexprvalue>false&lt;/rtexprvalue>
    * &lt;/attribute>
    * </pre>
    * @author Matt Shannon
    public class ConnectionTag extends TagSupport {
    static private OracleConnectionCacheImpl cache = null;
    public int doStartTag() throws JspTagException {
    try {
    Connection conn = null;
    if (cache == null) {
    try {
    InitialContext ic = new InitialContext();
    DataSource ds = (DataSource) ic.lookup
    ("jdbc/pool/OracleCache");
    cache = (OracleConnectionCacheImpl)ds;
    catch (NamingException ne) {
    throw new JspTagException(ne.toString());
    conn = cache.getConnection();
    pageContext.setAttribute(getId(),conn);
    catch (SQLException e) {
    throw new JspTagException(e.toString());
    return EVAL_BODY_INCLUDE;
    package com.solved.tag.dbtags.connection;
    import java.sql.Connection;
    import java.sql.SQLException;
    import javax.servlet.jsp.tagext.TagSupport;
    * <p>JSP tag closeconnection, used to close the
    * specified java.sql.Connection.<p>
    * <p>JSP Tag Lib Descriptor
    * <pre>
    * &lt;name>closeConnection&lt;/name>
    &lt;tagclass>com.solved.tag.dbtags.connection.CloseConnectionTag&
    lt;/tagclass>
    * &lt;bodycontent>empty&lt;/bodycontent>
    * &lt;info>Close the specified connection. The "conn"
    attribute is the name of a
    * connection object in the page context.&lt;/info>
    * &lt;attribute>
    * &lt;name>conn&lt;/name>
    * &lt;required>true&lt;/required>
    * &lt;rtexprvalue>false&lt;/rtexprvalue>
    * &lt;/attribute>
    * </pre>
    * @author Matt Shannon
    * @see ConnectionTag
    public class CloseConnectionTag extends TagSupport {
    private String _connId = null;
    * The "conn" attribute is the name of a
    * page context object containing a
    * java.sql.Connection.
    * @param connectionId
    * attribute name of the java.sql.Connection to
    close.
    * @see ConnectionTag
    public void setConn(String connectionId) {
    _connId = connectionId;
    public int doStartTag() {
    try {
    Connection conn = (Connection)pageContext.getAttribute
    (_connId);
    conn.close();
    } catch (SQLException e) {
    // failing to close a connection is not fatal
    e.printStackTrace();
    return EVAL_BODY_INCLUDE;
    public void release() {
    _connId = null;
    package com.solved.tag.dbtags.connection;
    import javax.servlet.jsp.tagext.TagData;
    import javax.servlet.jsp.tagext.TagExtraInfo;
    import javax.servlet.jsp.tagext.VariableInfo;
    * TagExtraInfo for the connection tag. This
    * TagExtraInfo specifies that the ConnectionTag
    * assigns a java.sql.Connection object to the
    * "id" attribute at the end tag.
    * @author Matt Shannon
    * @see ConnectionTag
    public class ConnectionTEI extends TagExtraInfo {
    public final VariableInfo[] getVariableInfo(TagData data)
    return new VariableInfo[]
    new VariableInfo(
    data.getAttributeString("id"),
    "java.sql.Connection",
    true,
    VariableInfo.AT_END
    data-sources.xml:
    <?xml version="1.0"?>
    <!DOCTYPE data-sources PUBLIC "Orion data-
    sources" "http://xmlns.oracle.com/ias/dtds/data-sources.dtd">
    <data-sources>
    <data-source
    class="oracle.jdbc.pool.OracleConnectionCacheImpl"
    name="jdbc/pool/OracleCache"
    location="jdbc/pool/OracleCache"
    url="jdbc:oracle:thin:@oracle1:1521:pdev"
    >
    <property name="maxLimit" value="15" />
    <property name="cacheScheme" value="2" />
    <property name="user" value="console" />
    <property name="password" value="console" />
    <description>
    This DataSource is using an Oracle-native DataSource Class so as
    to allow Oracle Specific extensions.
    A getConnection() call on this DataSource will return
    oracle.jdbc.driver.OracleConnection.
    The connection returned is a logical connection.
    The caching scheme in place is Fixed Wait. Refer below to
    possible values.
    Dynamic 1
    Fixed Wait 2
    Fixed Return Null 3
    </description>
    </data-source>
    </data-sources>
    many thanks,
    Matt.

    Hi. Show me your pool definition.
    Joe
    Ramamurthy wrote:
    I am using the jsp custom tag library from BEA called sqltags.tld which came with Weblogic 5.1. Currently I am using Weblogic6.1 sp2 on Solaris.
    I have created a Connection Pool for Sybase database using the driver com.sybase.jdbc.SybDriver.
    When I created jsp page to connect to the connection pool using sqltags custom tag library, I am getting the error
    "javax.servlet.jsp.JspException: Failed to write body content
    at weblogic.taglib.sql.ConnectionTag.doAfterBody(ConnectionTag.java:43)
    at jsp_servlet.__hubwcdata._jspService(__sampletest.java:1014)"
    After this message, whenever I try to access the same jsp page I am getting the message
    "javax.servlet.jsp.JspException: Failed to load JDBC driver: weblogic.jdbc.pool.D
    river
    at weblogic.taglib.sql.ConnectionTag.doStartTag(ConnectionTag.java:34)
    at jsp_servlet.__hubwcdata._jspService(__sampletest.java:205)".
    Can you please help me the reason why this problem is happening and how to fix this ?
    This problem doexn't happen consistently. This occurs once in a while.
    I tried to increase Login delay Seconds parameter in the Connection Pool to 15 sec. It didn't help me much.
    Thanks for your help !!!
    Ram

  • JVM Crash with INTERNAL ERROR

    Hi ,
    My jvm is getting crashed frequently with the below error log.
    os name=SunOS
    os version=5.10
    os architecture=sparc
    java version=1.5.0_08
    Can you please help me to identify this issue? Is there any known issue when using org.mozilla.javascript.Context.evaluateString from my code. Your help is highly appreciated..
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # Internal Error (565441424C4533545542530E4350500020 01), pid=12389, tid=114
    # Java VM: Java HotSpot(TM) Server VM (1.5.0_08-b03 mixed mode)
    --------------- T H R E A D ---------------
    Current thread (0x003018b0): JavaThread "Thread-57" [_thread_in_vm, id=114]
    Stack: [0x8db80000,0x8dc00000), sp=0x8dbfe408, free space=505k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    V [libjvm.so+0x6feb44]
    V [libjvm.so+0x4358f4]
    V [libjvm.so+0x311a0c]
    V [libjvm.so+0x3127fc]
    V [libjvm.so+0x311cc0]
    V [libjvm.so+0x3159f4]
    V [libjvm.so+0x3180f4]
    V [libjvm.so+0x311db4]
    v ~RuntimeStub::_handle_ic_miss_Java
    J org.mozilla.     .<init>(Lorg/mozilla/javascript/NativeCall;)V
    J org.mozilla.javascript.NativeCall.<init>(Lorg/mozilla/javascript/NativeFunction;Lorg/mozilla/javascript/Scriptable;[Ljava/lang/Object;)V
    v ~I2CAdapter
    j org.mozilla.javascript.ScriptRuntime.createFunctionActivation(Lorg/mozilla/javascript/NativeFunction;Lorg/mozilla/javascript/Scriptable;[Ljava/lang/Object;)Lorg/mozilla/javascript/Scriptable;+7
    j org.mozilla.javascript.gen.c928710._c1(Lorg/mozilla/javascript/gen/c928710;Lorg/mozilla/javascript/Context;Lorg/mozilla/javascript/Scriptable;Lorg/mozilla/javascript/Scriptable;[Ljava/lang/Object;)Ljava/lang/Object;+11
    j org.mozilla.javascript.gen.c928710.call(Lorg/mozilla/javascript/Context;Lorg/mozilla/javascript/Scriptable;Lorg/mozilla/javascript/Scriptable;[Ljava/lang/Object;)Ljava/lang/Object;+48
    j org.mozilla.javascript.optimizer.OptRuntime.callName([Ljava/lang/Object;Ljava/lang/String;Lorg/mozilla/javascript/Context;Lorg/mozilla/javascript/Scriptable;)Ljava/lang/Object;+21
    j org.mozilla.javascript.gen.c928710._c0(Lorg/mozilla/javascript/gen/c928710;Lorg/mozilla/javascript/Context;Lorg/mozilla/javascript/Scriptable;Lorg/mozilla/javascript/Scriptable;[Ljava/lang/Object;)Ljava/lang/Object;+47
    j org.mozilla.javascript.gen.c928710.call(Lorg/mozilla/javascript/Context;Lorg/mozilla/javascript/Scriptable;Lorg/mozilla/javascript/Scriptable;[Ljava/lang/Object;)Ljava/lang/Object;+44
    v ~C2IAdapter
    J org.mozilla.javascript.ScriptRuntime.doTopCall(Lorg/mozilla/javascript/Callable;Lorg/mozilla/javascript/Context;Lorg/mozilla/javascript/Scriptable;Lorg/mozilla/javascript/Scriptable;[Ljava/lang/Object;)Ljava/lang/Object;
    v ~I2CAdapter
    j org.mozilla.javascript.gen.c928710.call(Lorg/mozilla/javascript/Context;Lorg/mozilla/javascript/Scriptable;Lorg/mozilla/javascript/Scriptable;[Ljava/lang/Object;)Ljava/lang/Object;+13
    j org.mozilla.javascript.gen.c928710.exec(Lorg/mozilla/javascript/Context;Lorg/mozilla/javascript/Scriptable;)Ljava/lang/Object;+5
    j org.mozilla.javascript.Context.evaluateString(Lorg/mozilla/javascript/Scriptable;Ljava/lang/String;Ljava/lang/String;ILjava/lang/Object;)Ljava/lang/Object;+21
    v ~C2IAdapter
    J com.motorola.nms.framework.fm.trap.JSVariableHandler.process(Lcom/adventnet/snmp/snmp2/SnmpPDU;Ljava/util/List;Ljava/util/Properties;)Ljava/util/Properties;
    J com.motorola.nms.framework.fm.trap.TrapAgent.processTrap(Lcom/motorola/nms/framework/fm/trap/ConfiguredData;)V
    J com.motorola.nms.framework.fm.trap.TrapAgent.run()V
    v ~OSRAdapter
    j java.lang.Thread.run()V+11
    v ~StubRoutines::call_stub
    V [libjvm.so+0x199d94]
    V [libjvm.so+0x2bffb4]
    V [libjvm.so+0x2df58c]
    V [libjvm.so+0x2db128]
    V [libjvm.so+0x670740]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    v ~RuntimeStub::_handle_ic_miss_Java
    J org.mozilla.javascript.Arguments.<init>(Lorg/mozilla/javascript/NativeCall;)V
    J org.mozilla.javascript.NativeCall.<init>(Lorg/mozilla/javascript/NativeFunction;Lorg/mozilla/javascript/Scriptable;[Ljava/lang/Object;)V
    v ~I2CAdapter
    j org.mozilla.javascript.ScriptRuntime.createFunctionActivation(Lorg/mozilla/javascript/NativeFunction;Lorg/mozilla/javascript/Scriptable;[Ljava/lang/Object;)Lorg/mozilla/javascript/Scriptable;+7
    j org.mozilla.javascript.gen.c928710._c1(Lorg/mozilla/javascript/gen/c928710;Lorg/mozilla/javascript/Context;Lorg/mozilla/javascript/Scriptable;Lorg/mozilla/javascript/Scriptable;[Ljava/lang/Object;)Ljava/lang/Object;+11
    j org.mozilla.javascript.gen.c928710.call(Lorg/mozilla/javascript/Context;Lorg/mozilla/javascript/Scriptable;Lorg/mozilla/javascript/Scriptable;[Ljava/lang/Object;)Ljava/lang/Object;+48
    j org.mozilla.javascript.optimizer.OptRuntime.callName([Ljava/lang/Object;Ljava/lang/String;Lorg/mozilla/javascript/Context;Lorg/mozilla/javascript/Scriptable;)Ljava/lang/Object;+21
    j org.mozilla.javascript.gen.c928710._c0(Lorg/mozilla/javascript/gen/c928710;Lorg/mozilla/javascript/Context;Lorg/mozilla/javascript/Scriptable;Lorg/mozilla/javascript/Scriptable;[Ljava/lang/Object;)Ljava/lang/Object;+47
    j org.mozilla.javascript.gen.c928710.call(Lorg/mozilla/javascript/Context;Lorg/mozilla/javascript/Scriptable;Lorg/mozilla/javascript/Scriptable;[Ljava/lang/Object;)Ljava/lang/Object;+44
    v ~C2IAdapter
    J org.mozilla.javascript.ScriptRuntime.doTopCall(Lorg/mozilla/javascript/Callable;Lorg/mozilla/javascript/Context;Lorg/mozilla/javascript/Scriptable;Lorg/mozilla/javascript/Scriptable;[Ljava/lang/Object;)Ljava/lang/Object;
    v ~I2CAdapter
    j org.mozilla.javascript.gen.c928710.call(Lorg/mozilla/javascript/Context;Lorg/mozilla/javascript/Scriptable;Lorg/mozilla/javascript/Scriptable;[Ljava/lang/Object;)Ljava/lang/Object;+13
    j org.mozilla.javascript.gen.c928710.exec(Lorg/mozilla/javascript/Context;Lorg/mozilla/javascript/Scriptable;)Ljava/lang/Object;+5
    j org.mozilla.javascript.Context.evaluateString(Lorg/mozilla/javascript/Scriptable;Ljava/lang/String;Ljava/lang/String;ILjava/lang/Object;)Ljava/lang/Object;+21
    v ~C2IAdapter
    J com.motorola.nms.framework.fm.trap.JSVariableHandler.process(Lcom/adventnet/snmp/snmp2/SnmpPDU;Ljava/util/List;Ljava/util/Properties;)Ljava/util/Properties;
    J com.motorola.nms.framework.fm.trap.TrapAgent.processTrap(Lcom/motorola/nms/framework/fm/trap/ConfiguredData;)V
    J com.motorola.nms.framework.fm.trap.TrapAgent.run()V
    v ~OSRAdapter
    j java.lang.Thread.run()V+11
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x008a04d0 JavaThread "MainSocketSessionBE-10.8.40.140" [_thread_blocked, id=5180]
    0x00856a28 JavaThread "SendToClient - 10.8.40.140" [_thread_blocked, id=5179]
    0x019e2ee0 JavaThread "MainSocketSessionBE-10.8.40.140" [_thread_blocked, id=5178]
    0x010d9f08 JavaThread "SendToClient - 10.8.40.140" [_thread_blocked, id=5177]
    0x01389ab0 JavaThread "SendToClient - 10.8.40.140" [_thread_blocked, id=5174]
    0x01749d98 JavaThread "MainSocketSessionBE-10.8.40.140" [_thread_blocked, id=5173]
    0x00819178 JavaThread "SendToClient - 10.8.40.140" [_thread_blocked, id=5172]
    0x02258cd0 JavaThread "SendToClient - 10.8.40.140" [_thread_blocked, id=5170]
    0x02259318 JavaThread "SendToClient - 10.8.40.140" [_thread_blocked, id=5167]
    0x0062dc88 JavaThread "SendToClient - 10.8.40.140" [_thread_blocked, id=5165]
    0x00738bf0 JavaThread "SendToClient - 10.8.40.140" [_thread_blocked, id=5163]
    0x007e5148 JavaThread "SendToClient - 10.8.40.140" [_thread_blocked, id=5161]
    0x00ea16a8 JavaThread "MainSocketSessionBE-10.8.40.140" [_thread_blocked, id=5159]
    0x00a064c8 JavaThread "SendToClient - 10.8.40.140" [_thread_blocked, id=5158]
    0x007a2930 JavaThread "SendToClient - 10.8.40.140" [_thread_blocked, id=5156]
    0x0131ce18 JavaThread "MainSocketSessionBE-10.8.40.140" [_thread_blocked, id=5155]
    0x00366790 JavaThread "SendToClient - 10.8.40.140" [_thread_blocked, id=5154]
    0x024e60d0 JavaThread "MainSocketSessionBE-10.8.40.140" [_thread_blocked, id=5153]
    0x008103f0 JavaThread "SendToClient - 10.8.40.140" [_thread_blocked, id=5152]
    0x019e3148 JavaThread "SendToClient - 10.8.40.140" [_thread_blocked, id=5149]
    0x014a8cd0 JavaThread "MainSocketSessionBE-10.8.40.140" [_thread_blocked, id=5147]
    0x009fdfd8 JavaThread "SendToClient - 10.8.40.140" [_thread_blocked, id=5146]
    0x00e1c518 JavaThread "SendToClient - 10.8.40.140" [_thread_blocked, id=5144]
    0x014a82b0 JavaThread "SendToClient - 10.8.40.140" [_thread_blocked, id=5142]
    0x0016c258 JavaThread "SendToClient - 10.8.40.140" [_thread_blocked, id=5140]
    0x00c84cb0 JavaThread "SendToClient - 10.8.40.140" [_thread_blocked, id=5138]
    0x014c0248 JavaThread "SendToClient - 10.8.40.140" [_thread_blocked, id=5136]
    0x00baff90 JavaThread "MainSocketSessionBE-10.8.40.140" [_thread_blocked, id=5135]
    0x0193bf08 JavaThread "SendToClient - 10.8.40.140" [_thread_blocked, id=5134]
    0x007e6a20 JavaThread "SendToClient - 10.8.40.140" [_thread_blocked, id=5132]
    0x00c7ec00 JavaThread "MainSocketSessionBE-10.8.40.140" [_thread_blocked, id=5131]
    0x00a0c040 JavaThread "SendToClient - 10.8.40.140" [_thread_blocked, id=5130]
    0x01372068 JavaThread "MainSocketSessionBE-10.8.40.140" [_thread_blocked, id=5129]
    0x017b3cc0 JavaThread "SendToClient - 10.8.40.140" [_thread_blocked, id=5128]
    0x002756b0 JavaThread "MainSocketSessionBE-10.8.40.140" [_thread_blocked, id=5126]
    0x015e4e78 JavaThread "SendToClient - 10.8.40.140" [_thread_blocked, id=5125]
    0x018df8f8 JavaThread "MainSocketSessionBE-10.8.40.140" [_thread_blocked, id=5124]
    0x00875c60 JavaThread "SendToClient - 10.8.40.140" [_thread_blocked, id=5123]
    0x00739238 JavaThread "SendToClient - 10.8.40.140" [_thread_blocked, id=5121]
    0x00a0b510 JavaThread "SendToClient - 10.8.40.140" [_thread_blocked, id=5119]
    0x00632538 JavaThread "MainSocketSessionBE-10.8.40.140" [_thread_blocked, id=5118]
    0x017df3e8 JavaThread "SendToClient - 10.8.40.140" [_thread_blocked, id=5117]
    0x014b9b28 JavaThread "SendToClient - 10.8.40.140" [_thread_blocked, id=5115]
    0x01923b48 JavaThread "SendToClient - 10.8.40.140" [_thread_blocked, id=5113]
    0x0023aa08 JavaThread "MainSocketSessionBE-10.8.40.140" [_thread_blocked, id=5112]
    0x0071ca38 JavaThread "SendToClient - 10.8.40.140" [_thread_blocked, id=5111]
    0x00618860 JavaThread "MainSocketSessionBE-10.8.40.140" [_thread_blocked, id=5110]
    0x022c4ef8 JavaThread "SendToClient - 10.8.40.140" [_thread_blocked, id=5109]
    0x00a09590 JavaThread "SendToClient - 10.8.40.140" [_thread_blocked, id=5107]
    0x009c0d78 JavaThread "MainSocketSessionBE-10.8.40.140" [_thread_blocked, id=5106]
    0x00baf998 JavaThread "SendToClient - 10.8.40.140" [_thread_blocked, id=5105]
    0x013d6670 JavaThread "MainSocketSessionBE-10.8.40.140" [_thread_blocked, id=5104]
    0x01003d58 JavaThread "SendToClient - 10.8.40.140" [_thread_blocked, id=5103]
    0x00b99ee8 JavaThread "MainSocketSessionBE-10.8.40.140" [_thread_blocked, id=5102]
    0x024f7688 JavaThread "SendToClient - 10.8.40.140" [_thread_blocked, id=5101]
    0x0016ce28 JavaThread "SendToClient - 10.8.40.140" [_thread_blocked, id=5099]
    0x00f41338 JavaThread "MainSocketSessionBE-10.8.40.140" [_thread_blocked, id=5098]
    0x0071b608 JavaThread "SendToClient - 10.8.40.140" [_thread_blocked, id=5097]
    0x003bff78 JavaThread "MainSocketSessionBE-10.8.40.140" [_thread_blocked, id=5094]
    0x0159a360 JavaThread "SendToClient - 10.8.40.140" [_thread_blocked, id=5093]
    0x004d0198 JavaThread "MainSocketSessionBE-10.8.40.140" [_thread_blocked, id=5092]
    0x00739838 JavaThread "SendToClient - 10.8.40.140" [_thread_blocked, id=5091]
    0x00902cd0 JavaThread "SendToClient - 10.8.40.140" [_thread_blocked, id=5088]
    0x01c25920 JavaThread "MainSocketSessionBE-10.8.40.140" [_thread_blocked, id=5086]
    0x01c9f110 JavaThread "SendToClient - 10.8.40.140" [_thread_blocked, id=5085]
    0x005a12f8 JavaThread "MainSocketSessionBE-10.8.40.140" [_thread_blocked, id=5084]
    0x00676b20 JavaThread "SendToClient - 10.8.40.140" [_thread_blocked, id=5083]
    0x0131c850 JavaThread "MainSocketSessionBE-10.8.40.140" [_thread_blocked, id=5082]
    0x00a37148 JavaThread "SendToClient - 10.8.40.140" [_thread_blocked, id=5081]
    0x010bea28 JavaThread "Ajp13Processor[8009][9]" daemon [_thread_in_native, id=1641]
    0x00f73bf0 JavaThread "Ajp13Processor[8009][8]" daemon [_thread_in_native, id=1640]
    0x00729bf8 JavaThread "Ajp13Processor[8009][7]" daemon [_thread_in_native, id=1594]
    0x015ed670 JavaThread "Ajp13Processor[8009][6]" daemon [_thread_in_native, id=1593]
    0x00f74250 JavaThread "Ajp13Processor[8009][5]" daemon [_thread_in_native, id=1585]
    0x025db498 JavaThread "Ajp13Processor[8009][4]" daemon [_thread_in_native, id=1580]
    0x00c69fa0 JavaThread "Ajp13Processor[8009][3]" daemon [_thread_in_native, id=1547]
    0x00ad74f0 JavaThread "SESSION-Thread-102" [_thread_in_native, id=205]
    0x014c5b30 JavaThread "Thread-101" [_thread_blocked, id=204]
    0x0147eea8 JavaThread "Thread-100" [_thread_blocked, id=203]
    0x0198e670 JavaThread "Agent" [_thread_blocked, id=202]
    0x0198e4a8 JavaThread "Thread-99" [_thread_blocked, id=201]
    0x006fbe90 JavaThread "Process-Scheduler-2" [_thread_blocked, id=200]
    0x0198e2e0 JavaThread "Process-Scheduler-1" [_thread_blocked, id=199]
    0x013be480 JavaThread "Process-Scheduler" [_thread_blocked, id=198]
    0x00b9e428 JavaThread "TopoNotificationRegistry" [_thread_blocked, id=190]
    0x0156dee0 JavaThread "Thread-96" [_thread_in_native, id=189]
    0x0128de28 JavaThread "Ajp13Processor[8009][2]" daemon [_thread_in_native, id=188]
    0x01426350 JavaThread "Ajp13Processor[8009][1]" daemon [_thread_in_native, id=187]
    0x014c5eb0 JavaThread "Ajp13Processor[8009][0]" daemon [_thread_in_native, id=186]
    0x01443c30 JavaThread "Ajp13Connector[8009]" daemon [_thread_in_native, id=185]
    0x0086e0a0 JavaThread "HostConfig[localhost]" daemon [_thread_blocked, id=184]
    0x019d3ec0 JavaThread "API-Thread-94" [_thread_blocked, id=182]
    0x00725be8 JavaThread "JspRuntimeContext[FTOSKREL2.0]" daemon [_thread_blocked, id=181]
    0x01e925c0 JavaThread "GenericSocketServerFE" [_thread_in_native, id=160]
    0x011e6118 JavaThread "MainSocketServerFE" [_thread_in_native, id=159]
    0x008861e0 JavaThread "SendToClient - localhost" [_thread_blocked, id=158]
    0x022757e0 JavaThread "StandardManager[]" daemon [_thread_blocked, id=149]
    0x01469ec0 JavaThread "FileStore" daemon [_thread_blocked, id=148]
    0x01fdb108 JavaThread "statuspoll-5" [_thread_blocked, id=146]
    0x00ccb048 JavaThread "statuspoll-4" [_thread_blocked, id=145]
    0x00a6f588 JavaThread "statuspoll-3" [_thread_blocked, id=144]
    0x00a6f3c0 JavaThread "statuspoll-2" [_thread_blocked, id=143]
    0x009c7938 JavaThread "statuspoll-1" [_thread_blocked, id=142]
    0x00e8ab90 JavaThread "statuspoll" [_thread_blocked, id=141]
    0x012cff88 JavaThread "datapoll-7" [_thread_blocked, id=140]
    0x01a45430 JavaThread "datapoll-6" [_thread_blocked, id=139]
    0x0128e688 JavaThread "datapoll-5" [_thread_blocked, id=138]
    0x0188bd18 JavaThread "datapoll-4" [_thread_blocked, id=137]
    0x00ec2da0 JavaThread "datapoll-3" [_thread_blocked, id=136]
    0x00ec2188 JavaThread "datapoll-2" [_thread_blocked, id=135]
    0x01678c58 JavaThread "datapoll-1" [_thread_blocked, id=134]
    0x018045b8 JavaThread "datapoll" [_thread_blocked, id=133]
    0x013d7a10 JavaThread "Thread-63" [_thread_blocked, id=132]
    0x0138f208 JavaThread "DataCollection-5" [_thread_blocked, id=129]
    0x00f298f0 JavaThread "DataCollection-4" [_thread_blocked, id=128]
    0x006c0788 JavaThread "DataCollection-3" [_thread_blocked, id=127]
    0x018f9f88 JavaThread "DataCollection-2" [_thread_blocked, id=126]
    0x00ec39b8 JavaThread "DataCollection-1" [_thread_blocked, id=125]
    0x0188c3f0 JavaThread "DataCollection" [_thread_blocked, id=124]
    0x00974710 JavaThread "RMI LeaseChecker" daemon [_thread_blocked, id=122]
    0x00e8ae88 JavaThread "Thread-44" [_thread_in_native, id=121]
    0x018fb150 JavaThread "TRAPINPUT" [_thread_blocked, id=120]
    0x00e74988 JavaThread "TRAPSTORE0" [_thread_in_native, id=119]
    0x0187f870 JavaThread "COMMONTRAPNOTIFIER" [_thread_blocked, id=118]
    0x01fde828 JavaThread "Thread-60" [_thread_blocked, id=117]
    0x00e85688 JavaThread "Thread-59" [_thread_blocked, id=116]
    0x01968220 JavaThread "Thread-58" [_thread_blocked, id=115]
    =>0x003018b0 JavaThread "Thread-57" [_thread_in_vm, id=114]
    0x003016e8 JavaThread "Thread-56" [_thread_blocked, id=113]
    0x01817ba8 JavaThread "Thread-55" [_thread_blocked, id=111]
    0x006dc7f8 JavaThread "ConfUpdater-1" [_thread_blocked, id=110]
    0x00332b70 JavaThread "ConfUpdater" [_thread_blocked, id=109]
    0x00039a08 JavaThread "DestroyJavaVM" [_thread_blocked, id=1]
    0x00dae9f0 JavaThread "RunJSPModule" [_thread_in_native, id=105]
    0x01745380 JavaThread "NMSSAServer" [_thread_blocked, id=104]
    0x0159fbd8 JavaThread "RMI TCP Accept-1098" daemon [_thread_in_native, id=103]
    0x0084ceb0 JavaThread "policy-1" [_thread_blocked, id=102]
    0x01344678 JavaThread "policy" [_thread_blocked, id=101]
    0x00d14268 JavaThread "Thread-41" daemon [_thread_blocked, id=99]
    0x009769b8 JavaThread "MSXMLProcessorThread" [_thread_blocked, id=98]
    0x00975e30 JavaThread "Thread-51" [_thread_blocked, id=96]
    0x006fa3e0 JavaThread "Thread-49" [_thread_blocked, id=94]
    0x01a47ad8 JavaThread "Thread-47" [_thread_in_native, id=91]
    0x007d0890 JavaThread "Thread-46" [_thread_blocked, id=90]
    0x01b40358 JavaThread "1-1" [_thread_blocked, id=89]
    0x0084d980 JavaThread "1" [_thread_blocked, id=88]
    0x01351528 JavaThread "SUMMainServerThread" [_thread_in_native, id=86]
    0x01647ed8 JavaThread "DataManagement-4" [_thread_blocked, id=85]
    0x01649b10 JavaThread "DataManagement-3" [_thread_blocked, id=84]
    0x00f08940 JavaThread "DataManagement-2" [_thread_blocked, id=83]
    0x00f08330 JavaThread "DataManagement-1" [_thread_blocked, id=82]
    0x00f08688 JavaThread "DataManagement" [_thread_blocked, id=81]
    0x00f09368 JavaThread "Thread-40" [_thread_blocked, id=80]
    0x00f09158 JavaThread "process reaper" daemon [_thread_in_native, id=79]
    0x00917ae0 JavaThread "/export/home/FTOSKREL2.0/jre/bin/rmiregistry 1099 " [_thread_in_native, id=78]
    0x01033850 JavaThread "BEModuleDispatcher-2" [_thread_blocked, id=44]
    0x00e2bc60 JavaThread "BEModuleDispatcher-1" [_thread_blocked, id=43]
    0x00a137f8 JavaThread "Thread-4" [_thread_in_native, id=42]
    0x00dbadb0 JavaThread "BEModuleDispatcher" [_thread_blocked, id=41]
    0x00c7cb40 JavaThread "KeepAliveMonitor" [_thread_blocked, id=40]
    0x00629e00 JavaThread "SchedulerForFailOver-2" [_thread_blocked, id=39]
    0x006299e8 JavaThread "SchedulerForFailOver-1" [_thread_blocked, id=38]
    0x00777250 JavaThread "main-15" [_thread_blocked, id=37]
    0x0063bf58 JavaThread "main-14" [_thread_blocked, id=36]
    0x00bbb068 JavaThread "main-13" [_thread_blocked, id=35]
    0x00bba5c8 JavaThread "main-12" [_thread_blocked, id=34]
    0x00bbb3c8 JavaThread "main-11" [_thread_blocked, id=33]
    0x008c3c90 JavaThread "main-10" [_thread_blocked, id=32]
    0x008c5e58 JavaThread "main-9" [_thread_blocked, id=31]
    0x0075bce8 JavaThread "main-8" [_thread_blocked, id=30]
    0x0075b0d0 JavaThread "main-7" [_thread_blocked, id=29]
    0x008e8d80 JavaThread "main-6" [_thread_blocked, id=28]
    0x007e3428 JavaThread "main-5" [_thread_blocked, id=27]
    0x00d770d8 JavaThread "main-4" [_thread_blocked, id=26]
    0x005e1298 JavaThread "main-3" [_thread_blocked, id=25]
    0x00a2d2b8 JavaThread "main-2" [_thread_blocked, id=24]
    0x00a15740 JavaThread "main-1" [_thread_blocked, id=23]
    0x00bbd6e0 JavaThread "SchedulerForFailOver" [_thread_blocked, id=22]
    0x009f1b00 JavaThread "main" [_thread_blocked, id=21]
    0x0085cab0 JavaThread "GC Daemon" daemon [_thread_blocked, id=20]
    0x00759628 JavaThread "RMI Reaper" [_thread_blocked, id=19]
    0x0062c510 JavaThread "Thread-3" [_thread_in_native, id=18]
    0x006aba20 JavaThread "Thread-2" [_thread_blocked, id=17]
    0x006716f8 JavaThread "RMI TCP Accept-16000" daemon [_thread_in_native, id=15]
    0x0068c1a0 JavaThread "RMI TCP Accept-0" daemon [_thread_in_native, id=14]
    0x0068b9a0 JavaThread "Timer-0" daemon [_thread_blocked, id=13]
    0x0016e618 JavaThread "CommunicatorServer" daemon [_thread_in_native, id=12]
    0x0014f5a8 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=11]
    0x0014dcf0 JavaThread "CompilerThread1" daemon [_thread_blocked, id=10]
    0x0014ce80 JavaThread "CompilerThread0" daemon [_thread_blocked, id=9]
    0x0014c010 JavaThread "AdapterThread" daemon [_thread_blocked, id=8]
    0x0014b208 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=7]
    0x0013e970 JavaThread "Finalizer" daemon [_thread_blocked, id=6]
    0x0013e430 JavaThread "Reference Handler" daemon [_thread_blocked, id=5]
    Other Threads:
    0x0013abd8 VMThread [id=4]
    0x006389a0 WatcherThread [id=16]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event])
    [0x00032b80/0x000393d8] CompiledIC_lock - owner thread: 0x003018b0
    Heap
    PSYoungGen total 524096K, used 3475K [0xd8c00000, 0xf8c00000, 0xf8c00000)
    eden space 523904K, 0% used [0xd8c00000,0xd8f64dc8,0xf8ba0000)
    from space 192K, 0% used [0xf8bd0000,0xf8bd0000,0xf8c00000)
    to space 192K, 0% used [0xf8ba0000,0xf8ba0000,0xf8bd0000)
    PSOldGen total 1048576K, used 41471K [0x98c00000, 0xd8c00000, 0xd8c00000)
    object space 1048576K, 3% used [0x98c00000,0x9b47fec8,0xd8c00000)
    PSPermGen total 32768K, used 31513K [0x94c00000, 0x96c00000, 0x98c00000)
    object space 32768K, 96% used [0x94c00000,0x96ac6598,0x96c00000)
    Dynamic libraries:
    0x00010000      /export/home/FTOSKREL2.0/jre/bin/java
    0xff3ec000      /lib/libthread.so.1
    0xff380000      /lib/libdl.so.1
    0xff200000      /lib/libc.so.1
    0xff360000      /platform/SUNW,Netra-240/lib/libc_psr.so.1
    0xfe800000      /export/home/FTOSKREL2.0/jre/lib/sparc/server/libjvm.so
    0xff320000      /lib/libsocket.so.1
    0xff350000      /usr/lib/libsched.so.1
    0xff1d0000      /usr/lib/libCrun.so.1
    0xff1b0000      /lib/libm.so.1
    0xff080000      /lib/libnsl.so.1
    0xfe700000      /lib/libm.so.2
    0xff170000      /lib/libscf.so.1
    0xff150000      /lib/libdoor.so.1
    0xff060000      /lib/libuutil.so.1
    0xfe7e0000      /lib/libgen.so.1
    0xfe6d0000      /lib/libmd.so.1
    0xfe6b0000      /platform/SUNW,Netra-240/lib/libmd_psr.so.1
    0xfe690000      /lib/libmp.so.2
    0xfe670000      /export/home/FTOSKREL2.0/jre/lib/sparc/native_threads/libhpi.so
    0xfe5f0000      /export/home/FTOSKREL2.0/jre/lib/sparc/libverify.so
    0xfe5a0000      /export/home/FTOSKREL2.0/jre/lib/sparc/libjava.so
    0xfe580000      /export/home/FTOSKREL2.0/jre/lib/sparc/libzip.so
    0xfe3c0000      /usr/lib/locale/sk_SK.ISO8859-2/sk_SK.ISO8859-2.so.3
    0xfe390000      /export/home/FTOSKREL2.0/jre/lib/sparc/libnet.so
    0xfe2e0000      /export/home/FTOSKREL2.0/jre/lib/sparc/libmanagement.so
    0x93f20000      /export/home/FTOSKREL2.0/jre/lib/sparc/libj2pkcs11.so
    0x93dc0000      /usr/lib/libpkcs11.so
    0x944a0000      /usr/lib/libcryptoutil.so.1
    0x93490000      /usr/lib/security/pkcs11_softtoken_extra.so
    0x93da0000      /export/home/FTOSKREL2.0/lib/libUniqueIDSO.so
    0x92880000      /export/home/FTOSKREL2.0/jre/lib/sparc/libawt.so
    0x92700000      /export/home/FTOSKREL2.0/jre/lib/sparc/libmlib_image.so
    0x93c60000      /export/home/FTOSKREL2.0/jre/lib/sparc/headless/libmawt.so
    0x93c40000      /export/home/FTOSKREL2.0/jre/lib/sparc/librmi.so
    VM Arguments:
    jvm_args: -Xmx1536m -Dcatalina.home=/export/home/FTOSKREL2.0/apache/tomcat -Dmysql.home=/export/home/FTOSKREL2.0/mysql -Dwebserver.port=9090 -Dresource_check=9090,8009,8005 -Dwebserver.rootdir=/export/home/FTOSKREL2.0/apache -Djava.rmi.server.codebase="file:////export/home/FTOSKREL2.0/classes/ file:////export/home/FTOSKREL2.0/classes/ManagementServer.jar file:////export/home/FTOSKREL2.0/classes/AdventNetCLI.jar file:////export/home/FTOSKREL2.0/classes/xmojo.jar file:////export/home/FTOSKREL2.0/classes/AdventNetSnmp.jar file:////export/home/FTOSKREL2.0/classes/SNMPDebugger.jar file:////export/home/FTOSKREL2.0/classes/AdventNetJmxAgent.jar file:////export/home/FTOSKREL2.0/classes/AdventNetARUtils.jar file:////export/home/FTOSKREL2.0/classes/AdventNetTL1Agent.jar file:////export/home/FTOSKREL2.0/classes/AdventNetSAS.jar file:////export/home/FTOSKREL2.0/classes/jta.jar file:////export/home/FTOSKREL2.0/appln_mon/classes/ApplnMonitorServer.jar" -Dcom.sun.management.jmxremote.port=16000 -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.snmp.interface=NMST-1 -Dcom.sun.management.snmp.acl=false -Dcom.sun.management.snmp.port=16500
    java_command: com.adventnet.nms.startnms.NmsMainBE NMS_BE_PORT 2000 ROOT_DIR /export/home/FTOSKREL2.0
    Launcher Type: SUN_STANDARD
    Environment Variables:
    CLASSPATH=
    JAVA_COMPILER=NONE
    PATH=/usr/sbin:/usr/bin:/usr/local/bin/:/usr/local/bin/
    LD_LIBRARY_PATH=/export/home/FTOSKREL2.0/jre/lib/sparc/server:/export/home/FTOSKREL2.0/jre/lib/sparc:/export/home/FTOSKREL2.0/jre/../lib/sparc::/export/home/FTOSKREL2.0/lib:/export/home/FTOSKREL2.0/apache/lib
    SHELL=/sbin/sh
    Signal Handlers:
    SIGSEGV: [libjvm.so+0x6ff5b8], sa_mask[0]=0xffbffeff, sa_flags=0x00000004
    SIGBUS: [libjvm.so+0x6ff5b8], sa_mask[0]=0xffbffeff, sa_flags=0x00000004
    SIGFPE: [libjvm.so+0x27299c], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGPIPE: [libjvm.so+0x27299c], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGILL: [libjvm.so+0x27299c], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGUSR1: SIG_DFL, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGUSR2: SIG_DFL, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGHUP: SIG_IGN, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGINT: [libjvm.so+0x67191c], sa_mask[0]=0xffbffeff, sa_flags=0x00000004
    SIGQUIT: [libjvm.so+0x67191c], sa_mask[0]=0xffbffeff, sa_flags=0x00000004
    SIGTERM: [libjvm.so+0x67191c], sa_mask[0]=0xffbffeff, sa_flags=0x00000004
    --------------- S Y S T E M ---------------
    OS: Solaris 10 8/07 s10s_u4wos_12b SPARC
    Copyright 2007 Sun Microsystems, Inc. All Rights Reserved.
    Use is subject to license terms.
    Assembled 16 August 2007
    uname:SunOS 5.10 Generic_120011-14 sun4u (T2 libthread)
    rlimit: STACK 8192k, CORE infinity, NOFILE 65536, AS infinity
    load average:0,30 0,30 0,29
    CPU:total 2 has_v8, has_v9, has_vis1, has_vis2, is_ultra3
    Memory: 8k page, physical 4194304k(136568k free)
    vm_info: Java HotSpot(TM) Server VM (1.5.0_08-b03) for solaris-sparc, built on Jun 28 2006 01:22:05 by unknown with unknown Workshop:0x550

    it works well now . thanks
    "Bernie Wong" <[email protected]> wrote:
    Try this. I was helping a friend who had the same error id/internal error
    on
    WLS 6.1 SP2, 1.3.1_01 on W2K. He was consistently getting the Error ID:
    4349254E560E43505000F4 five minutes into testing his appl.
    Set -XX:MaxPermSize=128m.
    The problem disappeared.
    Please let me know if that helped you.
    "shang zhengjun" <[email protected]> wrote in message
    news:3cfdab48$[email protected]..
    I got following error after hours' running of weblogic:
    # HotSpot Virtual Machine Error, Internal Error
    # Please report this error at
    # http://java.sun.com/cgi-bin/bugreport.cgi
    # Error ID: 4349254E560E43505000F4
    # Problematic Thread: prio=1 tid=0x808e1d8 nid=0x29db runnable
    my sever environment
    OS: Redhat6.2(Kernel 2.2.14-5.0 on an i686)
    JDK: java version "1.3.1_01"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1_01)
    Java HotSpot(TM) Client VM (build 1.3.1_01, mixed mode)
    WLS: weblogic6.1 sp2
    could you help me? very urgent. thanks.

  • What  type of plug in do I need to use between weblogic and tomcat please

    Hi,
    Can anybody please tell me what type of plugin do I need to install to communicate between Tomcat4.0 and weblogic6.1 sp2.actually I wanted to use a connection pool from my servlet on my local tomact where connection pool is created on remote weblogic server.........?
    I have no idea what to do. I tried including the weblogic.jar in my local classpath where my tomcat is sitting. This didnot work . I got the following error......
    I want to know is it possible.............?
    javax.naming.NoInitialContextException: Cannot instantiate class: weblogic.jndi.WLInitialContextFactory [Root exception is java.lang.ClassNotFoundException: weblogic.jndi.WLInitialContextFactory]
    Your response is very inportant......
    Thnaks

    Thanks a lot for your rely....
    then how could I use the remote connection pool in my
    local Tomcat server.....?If thats is not possible then
    what if organisation have two webservers...? you mean
    thay have to create connection pool in two servers
    rather on one server and use it every where.....?
    Still depends on what you are trying to achieve.
    Most clustered systesm use a connections on each server. They sync the data retrieved between servers, not the connections themselves.
    If you simply one a single connection point then you need to use a driver that proxies requests to and from the real connection point.
    RmiJdbc is free at http://www.objectweb.org/.
    There are commercial drivers available, search at http://industry.java.sun.com/products/jdbc/drivers, which provide an enterprise layer for database access. They are probably more robust and feature rich than the above one.

  • EJB to be used in the init of the servlet

    Hi,
    We are using Weblogic6.1 SP2.We have a bean that is called in the init of the
    servlet which is executed when the server starts up. The EJB is called properly
    when used in system having already deployed EJBs(ie when it has entries in config.xml).
    But if we put the EJB jars in the application directory and without putting the
    entries in config.xml(which is the probable deployment scenario), the EJB to be
    called on startup is not deployed and we get an error saying unable to resolve
    jndi name. Can we control the sequence of events in Weblogic ie. forcing the EJB
    to be deployed first before calling it in init of servlet. Any pointers will be
    helpful.
    Thanks in advance,
    Rajiv Nanda.

    No we are still doing the development.
    "Guido Diener" <[email protected]> wrote:
    Is your wls running in production mode?
    Guido
    "rajiv" <[email protected]> schrieb im Newsbeitrag
    news:[email protected]..
    Hi,
    We are using Weblogic6.1 SP2.We have a bean that is called in theinit
    of the
    servlet which is executed when the server starts up. The EJB is calledproperly
    when used in system having already deployed EJBs(ie when it has entriesin
    config.xml).
    But if we put the EJB jars in the application directory and withoutputting the
    entries in config.xml(which is the probable deployment scenario), theEJB
    to be
    called on startup is not deployed and we get an error saying unableto
    resolve
    jndi name. Can we control the sequence of events in Weblogic ie. forcingthe EJB
    to be deployed first before calling it in init of servlet. Any pointerswill be
    helpful.
    Thanks in advance,
    Rajiv Nanda.

  • Ejbc error with jikes

    I've been using jikes for several months to do an ejbc compile, but
    just recently it quit working. However, it works with javac. I think
    it may be a classpath problem. Here's the classpath:
    x:\source\classes;c:\xerces-1_4_4\xerces.jar;c:\bea\jdk130\jre\lib\rt.jar;c:\bea\wlserver6.0\lib\weblogic.jar
    (The important part is x:\source\classes, which is the root for the
    western.*.* classes which follow, which it says can't be found.)
    Here's the ejbc command:
    X:\scripts\Wattage>java -classpath %classpath%
    -Dweblogic.home=c:\bea\wls_license.txt weblogic.ejbc20 -compiler jikes
    x:
    \source\build\western\build\std_WattageBean.jar
    x:\source\build\newbuild\config\wattageDomain\applications\ejb_WattageBe
    an.jar
    Here are some of the errors (there's many more similar ones)
    Found 13 semantic errors compiling
    "X:/scripts/Wattage/ejbcgen/western/common/security/SecurityBeanEOImpl.java":
    13. implements western.common.security.Security,
    weblogic.utils.PlatformConstants
    <------>
    *** Error: Type western/common/security/Security was not found.
    18. public java.util.Hashtable
    getPagePermissions(java.lang.String arg0, western.common.UniqueID
    arg1)
    <------>
    *** Error: Type western/common/UniqueID was not found.
    26. western.common.security.SecurityBean bean =
    (western.common.security.SecurityBean)wrap.getBean();
    <---------->
    *** Error: Type western/common/security/SecurityBean was not found.
    89. throws javax.ejb.EJBException,
    western.common.security.PasswordException,
    western.common.security.ActiveUse
    rException, java.rmi.RemoteException
    <--------------->
    *** Error: Type western/common/security/PasswordException was not
    found.
    89. throws javax.ejb.EJBException,
    western.common.security.PasswordException,
    western.common.security.ActiveUse
    rException, java.rmi.RemoteException
    <--------
    --------->
    *** Error: Type western/common/security/ActiveUserException was not
    found.
    115. }else if (e instanceof
    western.common.security.PasswordException) {
    <---------------------------------------------------->
    *** Error: The type of the left-side expression,
    "java/lang/Exception", cannot possibly be an instance of type
    "western/
    common/security/PasswordException".
    116. throw (western.common.security.PasswordException) e;
    ^
    *** Error: An expression of type "Exception" cannot be cast into type
    "PasswordException".
    117. }else if (e instanceof
    western.common.security.ActiveUserException) {
    <------------------------------------------------------>
    *** Error: The type of the left-side expression,
    "java/lang/Exception", cannot possibly be an instance of type
    "western/
    common/security/ActiveUserException".
    The curious thing to me is that it was working, but it's quit for some
    reason, but only for jikes (still works for javac). Anyone had any
    problems like this, or have any ideas?

    it appears that the problem also exists with jikes 1.17,weblogic6.1 sp2 and ant
    1.5.
    can someone tell me when i can download jikes 1.13 for windows. i really like
    to see how much faster jikes is compared to sun.
    thanks.
    "Madhusudan Chaganthi" <[email protected]> wrote:
    >
    [email protected] (Tom Ewall) wrote:
    I've been using jikes for several months to do an ejbc compile, but
    just recently it quit working. However, it works with javac. I think
    it may be a classpath problem. Here's the classpath:
    x:\source\classes;c:\xerces-1_4_4\xerces.jar;c:\bea\jdk130\jre\lib\rt.jar;c:\bea\wlserver6.0\lib\weblogic.jar
    (The important part is x:\source\classes, which is the root for the
    western.*.* classes which follow, which it says can't be found.)
    Here's the ejbc command:
    X:\scripts\Wattage>java -classpath %classpath%
    -Dweblogic.home=c:\bea\wls_license.txt weblogic.ejbc20 -compiler jikes
    x:
    \source\build\western\build\std_WattageBean.jar
    x:\source\build\newbuild\config\wattageDomain\applications\ejb_WattageBe
    an.jar
    Here are some of the errors (there's many more similar ones)
    Found 13 semantic errors compiling
    "X:/scripts/Wattage/ejbcgen/western/common/security/SecurityBeanEOImpl.java":
    13. implements western.common.security.Security,
    weblogic.utils.PlatformConstants
    <------>
    *** Error: Type western/common/security/Security was not found.
    18. public java.util.Hashtable
    getPagePermissions(java.lang.String arg0, western.common.UniqueID
    arg1)
    <------>
    *** Error: Type western/common/UniqueID was not found.
    26. western.common.security.SecurityBean bean =
    (western.common.security.SecurityBean)wrap.getBean();
    <---------->
    *** Error: Type western/common/security/SecurityBean was not found.
    89. throws javax.ejb.EJBException,
    western.common.security.PasswordException,
    western.common.security.ActiveUse
    rException, java.rmi.RemoteException
    <--------------->
    *** Error: Type western/common/security/PasswordException was not
    found.
    89. throws javax.ejb.EJBException,
    western.common.security.PasswordException,
    western.common.security.ActiveUse
    rException, java.rmi.RemoteException
    <--------
    --------->
    *** Error: Type western/common/security/ActiveUserException was not
    found.
    115. }else if (e instanceof
    western.common.security.PasswordException) {
    <---------------------------------------------------->
    *** Error: The type of the left-side expression,
    "java/lang/Exception", cannot possibly be an instance of type
    "western/
    common/security/PasswordException".
    116. throw (western.common.security.PasswordException) e;
    ^
    *** Error: An expression of type "Exception" cannot be cast into type
    "PasswordException".
    117. }else if (e instanceof
    western.common.security.ActiveUserException) {
    <------------------------------------------------------>
    *** Error: The type of the left-side expression,
    "java/lang/Exception", cannot possibly be an instance of type
    "western/
    common/security/ActiveUserException".
    The curious thing to me is that it was working, but it's quit for some
    reason, but only for jikes (still works for javac). Anyone had any
    problems like this, or have any ideas?What is your configuration?
    Weblogic - ??
    JIKES - ??
    JDK - ??
    I have seen something similar to this after switching from Jikes 1.13
    to Jikes
    1.16 a couple of days ago. I switched back to Jikes 1.13 and everything
    works
    fine. My weblogic version is 6.0 SP2 in both cases.
    Regards
    Madhu

  • Multi language problem in Weblogic 6.1 SP 2 with SUNOS 5.7

    We are having problem in displaying chinese / korean /thai characters display in
    Weblogic6.1 SP2 with SUNOS 5.7 combination. It shows junk characters only.
    If we are just displaying the html like http://localhost:7001/chinesepage.html.
    The display is correct.
    But if we make fileread of chinesepage.html and make out.println() through servlet..it
    displaying junk.
    However, we dont have any problem of showing chinese / korean / thai characters
    display in Weblogic6.1 SP2 with SUNOS5.6

    We are having problem in displaying chinese / korean /thai characters display in
    Weblogic6.1 SP2 with SUNOS 5.7 combination. It shows junk characters only.
    If we are just displaying the html like http://localhost:7001/chinesepage.html.
    The display is correct.
    But if we make fileread of chinesepage.html and make out.println() through servlet..it
    displaying junk.
    However, we dont have any problem of showing chinese / korean / thai characters
    display in Weblogic6.1 SP2 with SUNOS5.6

  • ERROR:Connection failure

    On my weblogic6.1 sp2 system,I ofter got following error:
    ####<Mar 7, 2004 6:03:21 PM CST> <Error> <HTTP> <wap.any8.com> <any8webserver>
    <ExecuteThread: '19' for queue: 'default'> <> <> <101083> <Connection failure>
    java.net.SocketException: Error in poll for fd: '11', revents: '8'
    at weblogic.socket.PosixSocketMuxer.deliverBadNews(PosixSocketMuxer.java:429)
    at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:384)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:24)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    Anybody know how can i do? Thanks.

    On my weblogic6.1 sp2 system,I ofter got following error:
    ####<Mar 7, 2004 6:03:21 PM CST> <Error> <HTTP> <wap.any8.com> <any8webserver>
    <ExecuteThread: '19' for queue: 'default'> <> <> <101083> <Connection failure>
    java.net.SocketException: Error in poll for fd: '11', revents: '8'
    at weblogic.socket.PosixSocketMuxer.deliverBadNews(PosixSocketMuxer.java:429)
    at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:384)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:24)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    Anybody know how can i do? Thanks.

  • MQSeries and MDB communication problem

    I was trying to write one MDB which will talk to MQSeries. After configuring everything(including the bindings and changes in weblogic-ejb-jar.xml) i deployed the MDB in weblogic6.1 sp2 server. It did not give me any error while deploying and container called the ejbCreate and setMessageContext methods without any problem. But it is not reading the messages from the MQ. It never picked up the messages from MQ. Can anyone please tell me what may be the reason?

    I would suggest that you look at the JMS FAQ or read the archives in the JMS newsgroup. There's lots of posts about getting this to work.
    -- Rob
    Sujoy Das wrote:
    I was trying to write one MDB which will talk to MQSeries. After configuring everything(including the bindings and changes in weblogic-ejb-jar.xml) i deployed the MDB in weblogic6.1 sp2 server. It did not give me any error while deploying and container called the ejbCreate and setMessageContext methods without any problem. But it is not reading the messages from the MQ. It never picked up the messages from MQ. Can anyone please tell me what may be the reason?--
    AVAILABLE NOW!: Building J2EE Applications & BEA WebLogic Server
    by Michael Girdley, Rob Woollen, and Sandra Emerson
    http://learnWebLogic.com
    [att1.html]

  • Where to put the patches ????

    Hi All,
    I have a question about where to keep the patches on weblogic6.1+sp2.
    what is the best practice/way to put the patches on wls6.1/wls8.1 .....iam more or less interested on putting these patches on wls6.1+sp2
    say for some reason, i need 4 patches(which are related to the same problem) ....and i downloaded it from support.bea.com site ...and then ......what is the best practice to place them....where ??
    We have been keeping the 4 patches(or all of them) at CLASSPATH level....but i don't know if it could be a issue for HOT DEPLOYMENT or not ....OR some other issues ?
    please let me know what is the BEST practice and other practices of keeping these patches ????
    thanks alot.
    -sangita

    I put patches on the knees of my denim overalls. I also like to wear a straw hat and carry around a pitchfork. It makes me look like a hick, but people better respect me or I will spear them with my pitchfork!

Maybe you are looking for

  • My "return" key doesn't work

    My "return" key no longer works on my keyboard. When I first started having issues with it, I'd have to make sure to hit the key in the center in order for it to work. Then, that was only working sometimes and I'd have to hit the key pretty hard to g

  • MySQL temp tables or Calling Stored procedures in CS4

    I need to filter a result set by username before performing a LEFT JOIN and including OR IS NULL rows. The SQL works from from the mysqli client, by either creating a temp table using  "create temporary table temp_appts select * from..."  Or by creat

  • Handling form data

    Hi all, i will first xplain the situation: i have page1 which sends 3 form data like year , date , name to page2 , in page2 im getting the form date(from page1) and store that data in new variables, In page 2 i have a form there i am using three hidd

  • My macbook is running hot

    My macbook is running hot even when im not doing much but googling or looking up things. What should I do?

  • With photoshop Element 13, when several photos are open it's impossible to chose which photo To print

    I have 1ç photos open and I create another picture to include many photos inside, then I want print this, normaly when you open the printing window this photo appear, but in this case only one photo appear on this window I try to select all calcs, to