• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Heap Memory Space Issue

 
Greenhorn
Posts: 20
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am running an application on iPlanet and we sporadically get the java.lang.OutOfMemory error on the server. the server is set-up to 1096K of heap memory.

We generally get this error after an EJB invoke method failure,

com.iplanet.portalserver.session.SessionException: Null or zero-length Session ID
at com.iplanet.portalserver.session.Session.getSession(Session.java:431)

We have ben trying to fix this problem but i guess nothing is working. The code for the app seems to be fine. Does anyone have a thought on what could be the reason for this random occurrence? Could it be related to the JDBC driver?
 
Ranch Hand
Posts: 1170
Hibernate Eclipse IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Not likely to be JDBC related. the GC should run before an OOM exception and in that case unused JDBC resources will all be recovered.
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic