RE: PermGen Out of memory exception

2007-11-12 Thread Caldarale, Charles R
> From: Jim [mailto:[EMAIL PROTECTED] > Subject: Re: PermGen Out of memory exception > > The problem with that language is it implies that PermGen space is > generally only an issue if you're using a lot of servlets or JSPs. Agreed, that's not inclusive enough. >

Re: PermGen Out of memory exception

2007-11-12 Thread Jim
Caldarale, Charles R wrote: Perhaps the Tomcat FAQ on memory-issues could be fleshed out/updated? This specific item is already in the Tomcat FAQ: "If you have a lot of servlets or JSP's, you may need to increase your permanent generation. By default, it is 64MB. Doubling [sic] it to be

RE: PermGen Out of memory exception

2007-11-12 Thread Caldarale, Charles R
> From: Jim [mailto:[EMAIL PROTECTED] > Subject: Re: PermGen Out of memory exception > > To address your rhetorical question :) , this issue is a > mess to research. Which is why it should be done before deployment... > it can be intimidating to be pointed at a 21 page >

Re: PermGen Out of memory exception

2007-11-12 Thread Jim
Caldarale, Charles R wrote: From: Jim [mailto:[EMAIL PROTECTED] Subject: Re: PermGen Out of memory exception PermGen space, on the other hand, doesn't get garbage collected As Peter C indicated, this is utter BS. Why do people keep propagating this fallacy? Easier to blame th

RE: PermGen Out of memory exception

2007-11-12 Thread Caldarale, Charles R
> From: Jim [mailto:[EMAIL PROTECTED] > Subject: Re: PermGen Out of memory exception > > PermGen space, on the other hand, doesn't get garbage collected As Peter C indicated, this is utter BS. Why do people keep propagating this fallacy? Easier to blame the JVM than take r

RE: PermGen Out of memory exception

2007-11-12 Thread Peter Crowther
> From: Jim [mailto:[EMAIL PROTECTED] > PermGen space, on the other hand, doesn't get garbage > collected, so you > need to ensure you're allocating enough to handle all that your > application will need. Unfortunately with the web application > classloader-system, every time you deploy an applica

Re: PermGen Out of memory exception

2007-11-12 Thread Jim
Hi Kanchana, Java processes use two types of memory: the "heap" (which is garbage collected), and "PermGen" memory (which is not garbage collected). Generally speaking, you won't run out of heap memory unless your application is set up so that the memory for all the objects being used at a s

PermGen Out of memory exception

2007-11-12 Thread Kanchana Welagedara
Hi All I have developed 4 war files using Appfuse frame work.These war files are independent.when I deployed any three war files the applications are up and run.But when I deployed the 4th one (any) it throws a PermGen exception.It has been copied in the bellow 1.Is this some thing related not s