Re: [Resin-interest] ConcurrentModificationException when InjectManager.findByName

2010-08-19 Thread Scott Ferguson
Wesley Wu wrote: > Thanks Scott. Is my code causing this error as Aaron said? > Nope. It's a Resin bug. That map inside the InjectManager is used as a cache and shouldn't be a HashMap. -- Scott > -Wesley > > 2010/8/20 Scott Ferguson : > >> Aaron Freeman wrote: >> >>> This is an error

Re: [Resin-interest] ConcurrentModificationException when InjectManager.findByName

2010-08-19 Thread Wesley Wu
Thanks Scott. Is my code causing this error as Aaron said? -Wesley 2010/8/20 Scott Ferguson : > Aaron Freeman wrote: >> This is an error in your JSP/JSTL, not with Resin -- you are trying to >> modify (add to) a HashMap that you are iterating over. >> > > Except it's the Resin code that's modifyi

Re: [Resin-interest] ConcurrentModificationException when InjectManager.findByName

2010-08-19 Thread Scott Ferguson
Aaron Freeman wrote: > This is an error in your JSP/JSTL, not with Resin -- you are trying to > modify (add to) a HashMap that you are iterating over. > Except it's the Resin code that's modifying the HashMap. It's an easy fix. -- Scott > Here is a more detailed explanation: > http://forums

Re: [Resin-interest] ConcurrentModificationException when InjectManager.findByName

2010-08-19 Thread Aaron Freeman
This is an error in your JSP/JSTL, not with Resin -- you are trying to modify (add to) a HashMap that you are iterating over. Here is a more detailed explanation: http://forums.sun.com/thread.jspa?threadID=5335803 Aaron On 8/19/2010 4:20 AM, Wesley Wu wrote: > Often happened at 30 seconds af