Re: java.lang.OutOfMemoryError

2004-12-06 Thread Jorg Heymans
(); um.getUpdateRunnableQueue().invokeAndWait(ru); } catch (InterruptedException e){ System.out.println("RunUpdate over"); }catch (java.lang.OutOfMemoryError err ){

Re: java.lang.OutOfMemoryError

2004-12-06 Thread Thomas DeWeese
cause of this increase over time is. thx -Original Message- From: Thomas DeWeese [mailto:[EMAIL PROTECTED] Sent: Monday, December 06, 2004 9:51 AM To: Batik Users Subject: Re: java.lang.OutOfMemoryError Tang, Charlie Y. wrote: I've included an html output of JProfiler with which t

RE: java.lang.OutOfMemoryError

2004-12-06 Thread Tang, Charlie Y.
e cause of this increase over time is. thx -Original Message- From: Thomas DeWeese [mailto:[EMAIL PROTECTED] Sent: Monday, December 06, 2004 9:51 AM To: Batik Users Subject: Re: java.lang.OutOfMemoryError Tang, Charlie Y. wrote: > I've included an html output of JProfiler with which th

Re: java.lang.OutOfMemoryError

2004-12-06 Thread Thomas DeWeese
Tang, Charlie Y. wrote: I've included an html output of JProfiler with which the program was ran for 4 days or so.. it appears the problem lies with some of the java primitives that batik maybe using such as char[] ?! Hi Charlie, Thanks for including this, however I'm a little unsure of how to

Re: java.lang.OutOfMemoryError

2004-12-01 Thread 0 8
um = svgc.getUpdateManager(); > > System.gc(); > > > > > um.getUpdateRunnableQueue().invo

Re: java.lang.OutOfMemoryError

2004-12-01 Thread Thomas DeWeese
Tang, Charlie Y. wrote: I've used JProbe on my program,when I used InvokeLater instead of InvokeAndWait, the problem was even worse, my program would crash after about 10 hours. The RunnableQueue$Link object count increased everytime updates were called. Who is holding references to the Link O

RE: java.lang.OutOfMemoryError

2004-12-01 Thread Tang, Charlie Y.
Thomas, thanks for the reply >> I have a problem of OutofMemoryError when updating my screen >> continuously every second after about a day or so > I don't know if the system has been stress tested to >this extent . Every update involves a fair amount of code. >Someone is obviously holding on

Re: java.lang.OutOfMemoryError

2004-12-01 Thread Archie Cobbs
Tang, Charlie Y. wrote: > I have a problem of OutofMemoryError when updating my screen > continuously every second after about a day or so Try running your application with JMP installed. When the memory gets full, sort the heap by type of object to see which class has all the instances filling up

Re: java.lang.OutOfMemoryError

2004-12-01 Thread Thomas DeWeese
Tang, Charlie Y. wrote: I have a problem of OutofMemoryError when updating my screen continuously every second after about a day or so I don't know if the system has been stress tested to this extent . Every update involves a fair amount of code. Someone is obviously holding onto something but

java.lang.OutOfMemoryError

2004-12-01 Thread Tang, Charlie Y.
pdate over");         }catch (java.lang.OutOfMemoryError err ){ //in case of memory error             Sys

Re: JSVGCanvas - java.lang.OutOfMemoryError

2001-11-10 Thread Thierry Kormann
ter some time (after counting to 8351 last time), I get a > java.lang.OutOfMemoryError > We have just fixed a memory leak that might solve your problem. If you want to check the current CVS code base, you are welcome. Thanks for your feedback. Thierry. --

Re: Multiplication of Event Handlers (May be related to JSVGCanvas-java.lang.OutOfMemoryError)

2001-09-06 Thread Vincent Hardy
David, David Kane wrote: > > > > We are trying to determine if we can work around the current limitations > to see if we can move forward until more dynamic capabilities are > supportedspeaking of which, is there a time-frame in mind for > supporting the dynamic elements of the SVG spec?

Re: Multiplication of Event Handlers (May be related to JSVGCanvas -java.lang.OutOfMemoryError)

2001-09-05 Thread David Kane
Folks, > In the SVG Browser case, when you reload an SVG file, a new Document > instance is created, in your case, you reuse it that's why the behavior > is correct in the SVG Browser and not in your example. This comes from > the fact that as Batik is still a merely static SVG implementation we

Re: Multiplication of Event Handlers (May be related to JSVGCanvas -java.lang.OutOfMemoryError)

2001-09-05 Thread Christophe Jolif
David, In the SVG Browser case, when you reload an SVG file, a new Document instance is created, in your case, you reuse it that's why the behavior is correct in the SVG Browser and not in your example. This comes from the fact that as Batik is still a merely static SVG implementation we haven't

Re: Multiplication of Event Handlers (May be related to JSVGCanvas -java.lang.OutOfMemoryError)

2001-09-05 Thread Christophe Jolif
Hello David, Thanks for your example. I reproduced your problem, and I'm now investigating. I will come back to you when I will have more information to give you. David Kane wrote: > We are also working on extending the JSVG canvas to give us some basic > animation capabilities. We are trigger

Multiplication of Event Handlers (May be related to JSVGCanvas -java.lang.OutOfMemoryError)

2001-09-04 Thread David Kane
Folks, We are also working on extending the JSVG canvas to give us some basic animation capabilities. We are triggering the update from a Javascript event. What is weird is that each time we reload the DOM, we seem to double our Javascript event handlers. The attached code illustrates the prob

JSVGCanvas - java.lang.OutOfMemoryError

2001-09-04 Thread Chris Kelly
Hi I'm using the 1.3 jdk on Windows NT. I am running the application from within JBuilder 3.5 I have slightly modified the JSVGCanvas sample code to increment a counter in a very simple SVG After some time (after counting to 8351 last time), I get a java.lang.OutOfMemoryError Here is th