Re: [OT] wicket users around the world

2008-12-16 Thread Iman Rahmatizadeh
Tehran, Iran I'm using wicket in developing the next gen nuclear bombs errr... sorry, no political jokes here :-) Using wicket in developing software for educational institues elearning apps. Iman

Re: Ajax ListView as Gmail

2008-05-24 Thread Iman Rahmatizadeh
The problem is with the way you fetch the messages, they are not loaded again , just fetched from the same folder instance each time. I guess the folder instance isnt updated between requests. On Fri, May 23, 2008 at 8:58 PM, Davidoff [EMAIL PROTECTED] wrote: it just exists...it's in the code

Re: Invoulentary session sharing/leakage in Wicket 1.3.x

2008-05-17 Thread Iman Rahmatizadeh
Or just copy WicketFilter into your source, and fix it there, it'll override the default. Its a quick fix until the release comes out. Iman On Fri, May 16, 2008 at 10:25 AM, Johan Compagner [EMAIL PROTECTED] wrote: Or get the snapshot build from or wicketstuff maven repo On 5/16/08, Erik van

Re: Why Localizer Retained so many heapsize?

2008-05-12 Thread Iman Rahmatizadeh
some experience with me ? Thank you very much. 2008/5/10 Iman Rahmatizadeh [EMAIL PROTECTED]: I've seen this before, altough it wasnt 2GB, but in a small 70MB heap dump the cache size was around 25MB. The ConcurrentHashMap caches a lot of unneeded string keys, where the keys are quite large

Re: Why Localizer Retained so many heapsize?

2008-05-12 Thread Iman Rahmatizadeh
things would those 2,863,559 entries supposed to contain? Is there any settings can control the limit of Entry size?or some strategy can reduce the key name of the entry? 2008/5/12 Iman Rahmatizadeh [EMAIL PROTECTED]: Well actually I haven't :-) My localizer gets quite large

Re: Why Localizer Retained so many heapsize?

2008-05-10 Thread Iman Rahmatizadeh
I've seen this before, altough it wasnt 2GB, but in a small 70MB heap dump the cache size was around 25MB. The ConcurrentHashMap caches a lot of unneeded string keys, where the keys are quite large, maybe strings of size 1k characters, like key :

Re: How to generate 403 Forbidden?

2008-05-07 Thread Iman Rahmatizadeh
throw new AbortWithHttpStatusException(403,true); Iman On Wed, May 7, 2008 at 11:00 AM, Java Programmer [EMAIL PROTECTED] wrote: Hello, How can I generate 403 Forbidden or other codes (404 etc.) on Exception? I think I should set headers and set redirect to true, but anyone have working

Re: Invoulentary session sharing/leakage in Wicket 1.3.x

2008-05-05 Thread Iman Rahmatizadeh
I'm also experiencing this with jetty. Is everybody else the same ? Iman On Mon, May 5, 2008 at 6:09 PM, Johan Compagner [EMAIL PROTECTED] wrote: it was really a pretty rare exception 285154 [btpool0-9] ERROR org.mortbay.log - /undefined java.lang.IllegalStateException: STREAM at

About the Session Leaking Problem

2008-05-03 Thread Iman Rahmatizadeh
Hi , About the session leaking problem described in this thread : http://www.nabble.com/Invoulentary-session-sharing-leakage-in-Wicket-1.3.x-td16550360.html I'm getting reports of the same problem from some of my clients. Where can I find the fix committed for this problem ? Is it more than just