• 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

java.lang.OutOfMemoryError

 
Greenhorn
Posts: 17
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi I am getting this error in my environment.
Anybody could.
I am using weblogic server 6.1 sp4.
####<Mar 25, 2003 11:21:13 AM IST> <Error> <HTTP> <mesa> <portalServer> <ExecuteThread: '14' for queue: 'default'> <abcdist1admin> <> <101017> <[WebAppServletContext(4943210,ncs4school,/ncs4school)] Root cause of ServletException>
java.lang.OutOfMemoryError
<<no stack trace available>>
 
Rancher
Posts: 13459
Android Eclipse IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
In 'regular java', OutOfMemory errors are usually caused by infinite loops or infinite recursion.
In Servlets/JSPs, the above is true, but you can also get it from infinite page includes. ie a.jsp includes b.jsp, includes a.jsp ad infinitum.
I tend to suffer from the second one more often
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic