Re: Tapestry 5.25 & Spring Integration

2011-06-28 Thread Rendy Tapestry
Chris, Thank you for your following response. My class defined through spring applicationContext, and accidentally when doing refactoring of this applicationContext, some configuration in web.xml also affected. After fixing this config, everything just fine now. On Wed, Jun 29, 2011 at 1:46 AM,

Re: Java Magic has 10000+ hits

2011-06-28 Thread Mark
If I remember correctly, Wordpress.com uses javascript to count views, so it won't count things when someone's RSS reader just checks for an updated feed. Mark On Tue, Jun 28, 2011 at 6:07 PM, Taha Tapestry wrote: > Then may be all of these hits are really rss feeds and wordpress is keeping > m

Re: Tapestry 5.2: Reloading in Production Mode.

2011-06-28 Thread Mark
You can read some of the discussion leading up to this change here: http://markmail.org/thread/kf7jgc6oesbnjbfu As far as I'm aware there isn't a setting that will let you turn it back on other than running with production mode turned off. But I might be wrong about that. Mark On Mon, Jun 27, 2

Re: Java Magic has 10000+ hits

2011-06-28 Thread Taha Tapestry
Then may be all of these hits are really rss feeds and wordpress is keeping me happy :( But it is great to know that you guys read my blog. Regards Taha On Jun 28, 2011, at 10:25 PM, Guerin Laurent wrote: > Me too :-) > > Envoyé de mon iPhone > > Le 28 juin 2011 à 18:37, "Andreas Andreou"

Re: Tapestry 5.25 & Spring Integration

2011-06-28 Thread Christian Köberl
On 2011-06-27 13:35, Rendy Tapestry wrote: I was follow the instruction here http://tapestry.apache.org/integrating-with-spring-framework.html to integrate spring with tapestry. I have one special class that implement Spring's ApplicationContextAware. But when application starting it never invok

Re: Conversion from 5.1 to 5.2

2011-06-28 Thread Rich M
On 06/28/2011 01:13 PM, Kalle Korhonen wrote: For Rich, the definite resolution is to increase the max amount of memory allocated to permgen (for Sun's JVM). Yea, after the 1 day crash we updated the JVM settings to: -Xms512m -Xmx512m -XX:MaxPermSize=512m Will follow up if problems still pers

Re: Conversion from 5.1 to 5.2

2011-06-28 Thread Kalle Korhonen
On Tue, Jun 28, 2011 at 9:16 AM, Norman Franke wrote: > On Jun 24, 2011, at 7:28 PM, Kalle Korhonen wrote: >> On Fri, Jun 24, 2011 at 3:33 PM, Norman Franke wrote: > I'm allocating 768MB for the heap. I haven't tried lower, but jconsole > indicates I'm using no more than 80 MB. So I'm a but puzzl

Re: T5 @PageActivationContext with @Persist

2011-06-28 Thread George Christman
Hi Thiago, would you happen to know of a better way of handling this issue? The only way I was able to get things working was with the following code. I feel it's very poorly written, however the add row component needs the purchaseRequest object to be persisted. Instantiating purchaseRequest objec

Re: Java Magic has 10000+ hits

2011-06-28 Thread Guerin Laurent
Me too :-) Envoyé de mon iPhone Le 28 juin 2011 à 18:37, "Andreas Andreou" a écrit : > wp stats must be wrong - i'm defitively the other one! > > On Tue, Jun 28, 2011 at 19:34, Inge Solvoll wrote: >> I'm the other one. Nice to meet you :) >> >> On Tuesday, June 28, 2011, dragan.sahpas...@gma

Re: Java Magic has 10000+ hits

2011-06-28 Thread Andreas Andreou
wp stats must be wrong - i'm defitively the other one! On Tue, Jun 28, 2011 at 19:34, Inge Solvoll wrote: > I'm the other one. Nice to meet you :) > > On Tuesday, June 28, 2011, dragan.sahpas...@gmail.com > wrote: >> I have you on my rss reader. >> I'm I the only one? >> >> Cheers, >> Dragan Sah

Re: Java Magic has 10000+ hits

2011-06-28 Thread Inge Solvoll
I'm the other one. Nice to meet you :) On Tuesday, June 28, 2011, dragan.sahpas...@gmail.com wrote: > I have you on my rss reader. > I'm I the only one? > > Cheers, > Dragan Sahpaski > > > > On Tue, Jun 28, 2011 at 9:20 AM, Taha Hafeez wrote: > >> Thank God I have only 1 :) >> >> >> On Tue, Jun 2

Re: T5 @PageActivationContext with @Persist

2011-06-28 Thread Thiago H. de Paula Figueiredo
On Tue, 28 Jun 2011 12:53:05 -0300, George Christman wrote: Hello, I'm trying figure out how to use the annotation @Persist with @PageActivationContext. Hi! It doesn't make much sense to use both at the same time, as the field would be overwritten for every request. -- Thiago H. de Paul

Re: Conversion from 5.1 to 5.2

2011-06-28 Thread Rich M
Just wanted to comment that I'm having very similar issues with an application that I upgraded the production version from 5.1 to 5.2. The 5.1 app ran fine indefinitely with no issues. After the upgrade it took about 1.5 days for the app to crash due to running out of PermGen space (at that po

Re: Conversion from 5.1 to 5.2

2011-06-28 Thread Norman Franke
On Jun 24, 2011, at 7:28 PM, Kalle Korhonen wrote: On Fri, Jun 24, 2011 at 3:33 PM, Norman Franke wrote: After I had everything working pretty well, I put it onto the production server where it ran for a few hours and then died with a PermGen exception. Previously, my app would run for mon

T5 @PageActivationContext with @Persist

2011-06-28 Thread George Christman
Hello, I'm trying figure out how to use the annotation @Persist with @PageActivationContext. When purchaseRequest is null, I need to have the ability to create a new one and persist it so that I can continue to set purchaseRequest with other ajax components such as add row. I also need to be able

Re: Tapestry 5.3: Reloading in Production Mode.

2011-06-28 Thread laloluke
Would be exactly as described in the following article but without restarting the server: build the JAR file, drop it onto the classpath and see the result without restart the application. http://blog.tapestry5.de/index.php/2010/01/19/tapestry-ioc-modularization-of-web-applications-without-osgi/

Re: Tapestry 5.3: Reloading in Production Mode.

2011-06-28 Thread laloluke
First of all thanks to all for the answers :-) We want to make a modular application. The idea is to have an application with a core module, where you can add independent modules (something like Jira plugins). If the plugins have pages (.tml) the modules would be invoked with links (for example

Re: T5: @Secure and https with subdomain

2011-06-28 Thread Thiago H. de Paula Figueiredo
On Tue, 28 Jun 2011 03:57:44 -0300, Angelo C. wrote: hi, Hi! if force a different host name, should it be another t5 app? No. -- Thiago H. de Paula Figueiredo Independent Java, Apache Tapestry 5 and Hibernate consultant, developer, and instructor Owner, Ars Machina Tecnologia da Inf

Re: Tapestry5-JQuery Integration and tapestry-beanvalidator

2011-06-28 Thread Emmanuel DEMEY
Hi Matias, Have you tested the solution, provided by Clément on Github ? Thanks Emmanuel -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry5-JQuery-Integration-and-tapestry-beanvalidator-tp4508284p4531662.html Sent from the Tapestry - User mailing list archive at

Re: Java Magic has 10000+ hits

2011-06-28 Thread Thiago H. de Paula Figueiredo
On Tue, 28 Jun 2011 03:50:50 -0300, Taha Hafeez wrote: Hi Hi! More than 1 hits in two and a half months, not bad. Congratulations, Taha! With good content comes good number of hits! :D -- Thiago H. de Paula Figueiredo Independent Java, Apache Tapestry 5 and Hibernate consultant, de

Re: TAP5-746: Zone Refresher

2011-06-28 Thread Bob Harner
I haven't had a chance to try it out, but in general I would always say patches are very welcome. Bob Harner On Jun 27, 2011 1:56 PM, "Taha Hafeez" wrote: > Hi > > It is written a mixin which can resolve > > https://issues.apache.org/jira/browse/TAP5-746 > > It refreshes a zone after a given peri

Re: Chenillekit 1.3.2 Window Component on Tapestry 5.2.5

2011-06-28 Thread Yohan Yudanara
Hi all, I'm using window component from chenillekit 1.1.0, replacing RenderSupport with JavaScriptSupport, and this problem is solved. :) Thanks.. On Tue, Jun 28, 2011 at 9:48 AM, Yohan Yudanara wrote: > Hi, > > Is there anyone using Chenillekit 1.3.2 window component on tapestry 5.2.5 ? > I go

tapx-datefield "17-12-2010 11:51:ss" bug?

2011-06-28 Thread Yohan Yudanara
Hi, I'm using "dd-MM- HH:mm:ss" format on tapx-datefield 1.1-SNAPSHOT (and tapestry 5.2.5). I'm populate default value using "new Date()". I've tested it using Windows Vista and Chrome 12, Firefox 3, IE 8 and no problem. But, one of my users who use mac os and safari, experiencing problem.

Re: Java Magic has 10000+ hits

2011-06-28 Thread Taha Hafeez
Sorry there are two subscribers and 3 comment subscribers. Check out the status. Wordpress rocks :) regards Taha On Tue, Jun 28, 2011 at 12:58 PM, dragan.sahpas...@gmail.com < dragan.sahpas...@gmail.com> wrote: > I have you on my rss reader. > I'm I the only one? > > Cheers, > Dragan Sahpaski >

Re: Java Magic has 10000+ hits

2011-06-28 Thread dragan.sahpas...@gmail.com
I have you on my rss reader. I'm I the only one? Cheers, Dragan Sahpaski On Tue, Jun 28, 2011 at 9:20 AM, Taha Hafeez wrote: > Thank God I have only 1 :) > > > On Tue, Jun 28, 2011 at 12:47 PM, Chris Collins wrote: > > > Do you know what your uniques are, were those browser or rss reader > >

Re: T5: @Secure and https with subdomain

2011-06-28 Thread Sigbjørn Tvedt
If you only want requests to https://sample.com/pay to be redirected, you could create a page that redirects the user. Take a look at the jumpstart example for using URLs as a return type. http://jumpstart.doublenegative.com.au/jumpstart/examples/navigation/returntypes1 Sigbjørn On Tue, Jun 28,

Re: Java Magic has 10000+ hits

2011-06-28 Thread Chris Collins
Hey I read it! Just I used to work for a company where we had a "famous" tech blogger working for us. He always talked about how many people who were reading his blog.except we saw his metrics :-{ C On Jun 28, 2011, at 12:20 AM, Taha Hafeez wrote: > Thank God I have only 1 :) > > > On T

Re: Java Magic has 10000+ hits

2011-06-28 Thread Taha Hafeez
Thank God I have only 1 :) On Tue, Jun 28, 2011 at 12:47 PM, Chris Collins wrote: > Do you know what your uniques are, were those browser or rss reader > requests? If you had 133 people who added your rss to their rss reader, > assuming it only fetched from your feed once a day that would be a

Re: Java Magic has 10000+ hits

2011-06-28 Thread Chris Collins
Do you know what your uniques are, were those browser or rss reader requests? If you had 133 people who added your rss to their rss reader, assuming it only fetched from your feed once a day that would be about 130 people :-{ Best C On Jun 27, 2011, at 11:50 PM, Taha Hafeez wrote: > Hi > >

Re: Java Magic has 10000+ hits

2011-06-28 Thread Angelo C.
that's very good for a tech blog. -- View this message in context: http://tapestry.1045711.n5.nabble.com/Java-Magic-has-1-hits-tp4530917p4530944.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To uns