Re: Persistent data issue

2010-10-29 Thread sigenz
Thank you very much, a persistent flash boolean variable that is set in the onPassivate method solved the problem. Sige -- View this message in context: http://tapestry.1045711.n5.nabble.com/Persistent-data-issue-tp3241417p3242907.html Sent from the Tapestry - User mailing list archive at Nabb

Re: Again problems with SSOs (Threading)

2010-10-29 Thread Moritz Gmelin
Howard, I have found ways around this problem for my special requirements. But I ran into this problem on two occasions now in the last 10 days. And I think this could happen to other people too. Question is whether this is a bug in tapestry or at least something to be noted in the documentatio

Re: Again problems with SSOs (Threading)

2010-10-29 Thread Howard Lewis Ship
So, if you are trying to handle page access restrictions rather than overall access restrictions, you can contribute into the ComponentRequestHandler pipeline service, which comes later in the process, after the request has been identified as either a component event request (including things like

Re: Again problems with SSOs (Threading)

2010-10-29 Thread Moritz Gmelin
Am 29.10.2010 um 16:24 schrieb Thiago H. de Paula Figueiredo: > On Fri, 29 Oct 2010 12:14:18 -0200, Moritz Gmelin > wrote: > >> Hi, > > Hi! > >> It happened to me again that one of my RequestFilters was creating a >> SessionStateObject. Which, when done for all assets of a page simply fails

Re: Memory creep

2010-10-29 Thread Thiago H. de Paula Figueiredo
On Fri, 29 Oct 2010 15:30:23 -0200, Josh Canfield wrote: but your suggestion of forcing garbage collection - can you give me some detail on how to go about that? http://download.oracle.com/javase/6/docs/technotes/guides/management/jconsole.html VisualVM (https://visualvm.dev.java.net/) ha

Re: Memory creep

2010-10-29 Thread Josh Canfield
> I think I'm would be getting OOM if I left the tests running for long enough Until you actually hit a barrier that causes a garbage collection you'll never know how much actual memory your application is using and how much garbage is sitting around. I just randomly grabbed this article which app

RE: Memory creep

2010-10-29 Thread Jim O'Callaghan
Thanks for the suggestions Josh - I'm just starting to work through the app with the Eclipse Memory Profiler to see if I can spot what's going on. I think I'm would be getting OOM if I left the tests running for long enough but your suggestion of forcing garbage collection - can you give me some d

Re: SERVICE_UNAVAILABLE with Tapestry 5.2.2-SNAPSHOT

2010-10-29 Thread researcher1
Many thanks. It works now :) -- View this message in context: http://tapestry.1045711.n5.nabble.com/SERVICE-UNAVAILABLE-with-Tapestry-5-2-2-SNAPSHOT-tp3242146p3242335.html Sent from the Tapestry - User mailing list archive at Nabble.com. -

Re: [TapestryHotelBooking Demo]AjaxLoader component questions

2010-10-29 Thread Christophe Cordenier
Thanks for feedback ! You can fill an issue on github, i'll have a closer look before releasing 1.1 2010/10/29 Muhammad Mohsen > I just solved id :) > > I debugged through tapestry javascript and found that the link loading the > zone has an onclick JS code saying something like: > > javascript:

Re: Memory creep

2010-10-29 Thread Josh Canfield
Can you run it with a profiler? Something like Yourkit will tell you what is being used. Also, have you forced garbage collection? It doesn't sound like you're getting OOM so maybe you've got garbage laying around? On 29 Oct 2010 08:36, "Jim O'Callaghan" wrote: > I'm testing a Tapestry app runnin

Memory creep

2010-10-29 Thread Jim O'Callaghan
I'm testing a Tapestry app running under Jetty on Windows using multiple Selenium IDE sessions and have noticed a creep of about 130MB RAM per hour on my java exe when running through a test loop that logs in to the app, runs through some expected user behaviour (some search screens, detail screens

Re: [TapestryHotelBooking Demo]AjaxLoader component questions

2010-10-29 Thread Muhammad Mohsen
I just solved id :) I debugged through tapestry javascript and found that the link loading the zone has an onclick JS code saying something like: javascript:return Tapestry.waitForPage(*someting*) It's built in code so we don't actually need it. Now this method returns "true" whenever the variab

Re: SERVICE_UNAVAILABLE with Tapestry 5.2.2-SNAPSHOT

2010-10-29 Thread Thiago H. de Paula Figueiredo
On Fri, 29 Oct 2010 12:54:51 -0200, researcher1 wrote: Hi all, Hi! 2010-10-29 16:40:10.724::WARN: Failed startup of context org.mortbay.jetty.plugin.jetty6pluginwebappcont...@57a3eab6{/tapestry-tutorial1,/Users/milstan/Documents/workspace-java1/tapestryNew/tapnew1/tapestry-tutorial1/src/

SERVICE_UNAVAILABLE with Tapestry 5.2.2-SNAPSHOT

2010-10-29 Thread researcher1
Hi all, sorry for this beginner question, but I do not seem to be able to find the answer elsewhere. I generated the tutorial archetype and tried to run it, but I am getting a SERVICE_UNAVAILABLE error. This happens even when I change the version to earlier ones. Here is the console output:

Re: [tapestry5-hotel-booking] missing package

2010-10-29 Thread Muhammad Mohsen
No need to be. Enough effort from your side already :) On Fri, Oct 29, 2010 at 4:47 PM, Christophe Cordenier < christophe.corden...@gmail.com> wrote: > Committed ! sorry > > 2010/10/29 Muhammad Mohsen > > > This is really wierd ! > > I can' find this package ! > > > > *com.tap5.hotelbooking.enti

Re: [tapestry5-hotel-booking] missing package

2010-10-29 Thread Christophe Cordenier
Committed ! sorry 2010/10/29 Muhammad Mohsen > This is really wierd ! > I can' find this package ! > > *com.tap5.hotelbooking.entities* > * > * > Is there a way through which I can check-out the code using a cvs or a svn > client ? I can't find a url for either clients ! > > -- > *Regards,* > *M

Re: Again problems with SSOs (Threading)

2010-10-29 Thread Thiago H. de Paula Figueiredo
On Fri, 29 Oct 2010 12:14:18 -0200, Moritz Gmelin wrote: Hi, Hi! It happened to me again that one of my RequestFilters was creating a SessionStateObject. Which, when done for all assets of a page simply fails at one point. Different Threads accessing different Assets in parallel star

Again problems with SSOs (Threading)

2010-10-29 Thread Moritz Gmelin
Hi, It happened to me again that one of my RequestFilters was creating a SessionStateObject. Which, when done for all assets of a page simply fails at one point. Different Threads accessing different Assets in parallel start to create new Sessions and thus the SSO gets lost. Now one can resolve

[tapestry5-hotel-booking] missing package

2010-10-29 Thread Muhammad Mohsen
This is really wierd ! I can' find this package ! *com.tap5.hotelbooking.entities* * * Is there a way through which I can check-out the code using a cvs or a svn client ? I can't find a url for either clients ! -- *Regards,* *Muhammad Gelbana Java Software Programmer*

Re: [T 5.1.0.5]Parameter namespacePrefix was null

2010-10-29 Thread olip
Thanks so much! Now I can clearly see where those old wstx libs are coming from! -- View this message in context: http://tapestry-users.832.n2.nabble.com/T-5-1-0-5-Parameter-namespacePrefix-was-null-tp5685838p5685935.html Sent from the Tapestry Users mailing list archive at Nabble.com. ---

Re: how to disable autoloading of additional javascripts when using got jquery

2010-10-29 Thread gbrits
Thanks, but I don't see how that helps. I don't have any conflicting libraries (no prototype, etc. ) just want to make sure the got jquery impl. doens't autoload it's small jscripts, when Ive already included the entire aggregated script to begin with. 2010/10/29 ael [via Tapestry] > > http://d

Re: [T 5.1.0.5]Parameter namespacePrefix was null

2010-10-29 Thread Mats Andersson
mvn dependency:tree BR Mats olip skrev 2010-10-29 12:04: Hi everyone! Using T 5.1.0.5. When I build my project with maven integrated jetty webserver everything works fine. When I am deploying the war package to our deployment webserver with a standalone jetty instance I get the following error

[T 5.1.0.5]Parameter namespacePrefix was null

2010-10-29 Thread olip
Hi everyone! Using T 5.1.0.5. When I build my project with maven integrated jetty webserver everything works fine. When I am deploying the war package to our deployment webserver with a standalone jetty instance I get the following error "Parameter namespacePrefix was null" which other thread exi

Re: T5.1 How to prevent uniquifying client ID

2010-10-29 Thread Mats Andersson
Hi, One solution could be to let tapestry handle id attribute as before and instead use a unique class as your own identifier. Best regards Mats Daniel Henze skrev 2010-10-28 00:17: Hi there, I have two actionlinks with different t:id, but still Tapestry sets a unique id at the end and t