Re: T5 OutOfMemoryError

2007-03-04 Thread Todd Orr
I think I looked at this so long I got tunnel vision. Thank you very much. On 3/4/07, Howard Lewis Ship <[EMAIL PROTECTED]> wrote: Found your problem. Inside SearchForm.html: http://tapestry.apache.org/schema/tapestry_5_0_0.xsd";> The first thing your SearchForm says is that another SearchFor

Re: T5 OutOfMemoryError

2007-03-04 Thread Howard Lewis Ship
Found your problem. Inside SearchForm.html: http://tapestry.apache.org/schema/tapestry_5_0_0.xsd";> The first thing your SearchForm says is that another SearchForm is nested inside it. There's your infinite recursion. This has already been identified as a bug: https://issues.apache.org/jira/

Re: T5 OutOfMemoryError

2007-03-03 Thread Todd Orr
1. start jboss or tomcat 2. deploy war (using mvn tomcat:deploy, for example) 3. attempt to resolve url 4. OOME Seems to be something about this particular component. I created a simple Border component that uses no dynamic data, property access, etc. It seemed to work. However, this component th

Re: T5 OutOfMemoryError

2007-03-03 Thread Howard Lewis Ship
That's nice but please identify what led up to the OOME. On 3/3/07, Todd Orr <[EMAIL PROTECTED]> wrote: It seems that even a simple component causes an OutOfMemoryError exception to be thrown. This happens with both JBoss4.0.4GA and Tomcat 5.5. I've attached a simple sample project. --