Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

java.lang.OutOfMemoryError

Status
Not open for further replies.

hancheng

MIS
May 9, 2003
1
US
Here is the error in the stderr.txt file when the client tried to login, thanks in advance for any help. (We are using WebSphere 3.5.3.

Exception in thread "Pooled ORB request dispatch WorkerThread" java.lang.OutOfMemoryError
Exception in thread "Pooled ORB request dispatch WorkerThread" java.io.IOException: Serializable readObject method failed internally
at com.ibm.rmi.io.IIOPOutputStream.throwExceptionType(Native Method)
at com.ibm.rmi.io.IIOPOutputStream.throwExceptionType(Compiled Code)
at com.ibm.rmi.io.IIOPOutputStream.simpleWriteObject(Compiled Code)
at com.ibm.rmi.io.ValueHandlerImpl.writeValueInternal(Compiled Code)
at com.ibm.rmi.io.ValueHandlerImpl.writeValue(Compiled Code)
at com.ibm.rmi.iiop.CDROutputStream.write_value(Compiled Code)
at com.ibm.rmi.iiop.CDROutputStream.write_abstract_interface(Compiled Code)
at javax.rmi.CORBA.Util.writeAbstractObject(Compiled Code)
at com.ibm.rmi.io.IIOPOutputStream.writeObjectDelegate(Compiled Code)
at com.ibm.rmi.io.IIOPOutputStream.writeObjectOverride(Compiled Code)
at java.io_ObjectOutputStream.writeObject(Compiled Code)
at java.util.HashMap.writeObject(Compiled Code)
at com.ibm.rmi.io.IIOPOutputStream.writeObject(Native Method)
at com.ibm.rmi.io.IIOPOutputStream.writeObject(Compiled Code)
at com.ibm.rmi.io.IIOPOutputStream.invokeObjectWriter(Compiled Code)
at com.ibm.rmi.io.IIOPOutputStream.outputObject(Compiled Code)
at com.ibm.rmi.io.IIOPOutputStream.simpleWriteObject(Compiled Code)
at com.ibm.rmi.io.ValueHandlerImpl.writeValueInternal(Compiled Code)
at com.ibm.rmi.io.ValueHandlerImpl.writeValue(Compiled Code)
at com.ibm.rmi.iiop.CDROutputStream.write_value(Compiled Code)
at com.ibm.rmi.iiop.CDROutputStream.write_value(Compiled Code)
at com.ibm.CORBA.iiop.ServerResponseImpl.write_value(Compiled Code)
at com.convergys.ppm.ejb.atlys._EJSRemoteReferenceData_Tie._invoke(Compiled Code)
at com.ibm.CORBA.iiop.ExtendedServerDelegate.dispatch(Compiled Code)
at com.ibm.CORBA.iiop.ORB.process(Compiled Code)
at com.ibm.CORBA.iiop.WorkerThread.run(Compiled Code)
at com.ibm.ejs.oa.pool.ThreadPool$PooledThread.run(Compiled Code)
 
Did you set the minimum heap size for the application? and maximum? Too many threads in JVM 1.4.1 is a known limitation - you need a newer JVM with non blocking IO - apparently recently release
 
WAS 3.5.3 does not use the 1.4.1 JVM but I would suggest increasing the heap size. look for the JVM mx and ms options. Also, run -verbosegc to watch the garbage collection
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top