Tapestry Application produces "GC overhead limit exceeded"

2011-08-03 Thread olip
Hi everyone! We are running a Tapestry application on an Jetty7 hightide deployment server. The server has 2gig ram and jetty is configured the following way: JAVA_OPTIONS="-Xmx1024m -XX:MaxPermSize=256m -Djava.awt.headless=true" (On the server is only running jetty, mysql and postfix nothing e

HTTP ERROR: 403

2011-08-03 Thread enriqueism
Hello, I have a problem: I had a proyect using Tapestry 5.1, I decided to upgrade my proyect to 5.2.5 just changing the value in my pom.xml file. After upgrade I'm getting this error avery time I get any exception, then I need to restart Jetty to countinue working. With T5.1 I don't need to do that

Re: This is what I get when sending an email to tynamo mailing list

2011-08-03 Thread Lenny Primak
Not sure what's going on, but I think most of my emails get fatally bounced back. Only happens with Tynamo list,, I never have any other E-mail issues. On Aug 3, 2011, at 5:00 PM, Kalle Korhonen wrote: > But you get the emails sent to the list (I can see you are subscribed > to it)? How odd - wo

Re: This is what I get when sending an email to tynamo mailing list

2011-08-03 Thread Kalle Korhonen
But you get the emails sent to the list (I can see you are subscribed to it)? How odd - wonder if it's temporary or something wrong at the codehaus mail settings? Cc:ing tynamo users just to see if it goes through. Kalle On Wed, Aug 3, 2011 at 2:37 PM, Lenny Primak wrote: > Fwd: Returned mail:

This is what I get when sending an email to tynamo mailing list

2011-08-03 Thread Lenny Primak
Fwd: Returned mail: see transcript for details Begin forwarded message: > From: Mail Delivery Subsystem > Date: August 3, 2011 1:12:15 PM CDT > To: > Subject: Returned mail: see transcript for details > > The original message was received at Fri, 29 Jul 2011 12:14:39 -0400 > from user-0cdfs

Re: t:form cannot be created?

2011-08-03 Thread eray
Thank you for your reply. I'll try to describe the information you need as accurately as I can. In addition, I'll also upload screenshots of my Java Build Path in Eclipse (sorry, I couldn't find a way to print them out in Eclipse). JDK: 1.6.0_26 Operating System: Mac OS X 10.5.8 Tapestry Version

Re: t:form cannot be created?

2011-08-03 Thread Howard Lewis Ship
We'll need all the information about your environment: JDK, operating system, exact version of Tapestry, exactly what's on your classpath, and what's your application server or servlet container. You must be using something off the beaten path. On Wed, Aug 3, 2011 at 9:46 AM, eray wrote: > I do

Re: t:form cannot be created?

2011-08-03 Thread eray
I downloaded the code for the Hotel Booking Application linked on the Getting Started page. I've run the code on Jetty and got the result below. Again, the problem is that the form cannot be created. I am really puzzled about it. An une

Re: t:form cannot be created?

2011-08-03 Thread eray
I've just tried it with the JDK version 1.5. Unfortunately, it didn't help either. You didn't mean JDK 7, I guess. -- View this message in context: http://tapestry.1045711.n5.nabble.com/t-form-cannot-be-created-tp4657559p4662397.html Sent from the Tapestry - User mailing list archive at Nabble.co

Re: t:form cannot be created?

2011-08-03 Thread eray
I just tried it with the Tapestry versions 5.2.5 and 5.2.6 and got the same result. I couldn't intall the version 5.3.0 with maven. -- View this message in context: http://tapestry.1045711.n5.nabble.com/t-form-cannot-be-created-tp4657559p4662290.html Sent from the Tapestry - User mailing list ar

Re: [T5] Announce - TreeGrid component

2011-08-03 Thread sandeep kale
Please provide the details how to use the tree grid component. I tried in this way. in java public List getContainerVOList() { return containerVOList; } /** * Returns a model for containerFieldValue. * * @return BeanModel

Re: t:form cannot be created?

2011-08-03 Thread eray
Thank you for the replies. The content of the AppModule.java file looks like below. You should see the line 90 in bold fonts. package com.packtpub.services; import java.io.IOException; import org.apache.tapestry5.*; import org.apache.tapestry5.ioc.MappedConfiguration; import org.apache.tapestry5

Re: T5.2.4 / ActionLink's dead in IE

2011-08-03 Thread Gunnar Eketrapp
Or even better ... jQuery(document).ready(function($) { $('a button').click(function() { location.href=$(this).closest("a").attr("href"); }); }); 2011/8/3 Gunnar Eketrapp > I found a javascript solution > > jQuery(document).ready(function($) { > $('.actionbutton').click(function(

Re: T5.2.4 / ActionLink's dead in IE

2011-08-03 Thread Gunnar Eketrapp
I found a javascript solution jQuery(document).ready(function($) { $('.actionbutton').click(function() { location.href=$(this).closest("a").attr("href"); }); }); 2011/8/3 Gunnar Eketrapp > Just found ... > > > http://www.expertsguide.info/2010/07/button-tag-inside-anchor-not-worki

Re: T5.2.4 / ActionLink's dead in IE

2011-08-03 Thread Gunnar Eketrapp
Just found ... http://www.expertsguide.info/2010/07/button-tag-inside-anchor-not-working-in-i/ .. but now i need some smart way of adding this fix my actionlink's 2011/8/3 Gunnar Eketrapp > Oops forgot to mention that I am using version 8.0 of the unmentionable > browser :-) > > > 2011

Re: Integrating Jasypt with Hibernate and Tapstry 5

2011-08-03 Thread Sigbjørn Tvedt
Thank you. I managed to get the registry up, but the seamless integration with hibernate still fails. Still, since I have the registry running, I am able to write the necessary code to make it work in the few places I needed to encrypt/decrypt the data. Sigbjørn Tvedt On Wed, Aug 3, 2011 at 10:

Re: T5.2.4 / ActionLink's dead in IE

2011-08-03 Thread Gunnar Eketrapp
Oops forgot to mention that I am using version 8.0 of the unmentionable browser :-) 2011/8/3 Gunnar Eketrapp > Hi all! > > I have some actionlink's that works fine in Chrome but in IE they do > absolutely nothing. > > There are no javascript errors. > > Has anyone else had the same problems? >

T5.2.4 / ActionLink's dead in IE

2011-08-03 Thread Gunnar Eketrapp
Hi all! I have some actionlink's that works fine in Chrome but in IE they do absolutely nothing. There are no javascript errors. Has anyone else had the same problems? Note: The actionlink's encloses a button element. Thanks in advance! Gunnar Eketrapp =

Re: Specifying several event constants for the @OnEvent annotation?

2011-08-03 Thread Julien Martin
Thank you all. I am then going to use a private method invoked by both public methods. Regards, Julien. 2011/8/3 Howard Lewis Ship > -1 > > Thiago had the right solution. Further, the second event > ("fromMyAjaxEvent") will occur after the "activate" event itself > (assuming that the Ajax-reque

Re: Integrating Jasypt with Hibernate and Tapstry 5

2011-08-03 Thread Geoff Callender
I've used Jasypt but I haven't gone the next step of integrating it with Hibernate. Regardless, I think this might do the trick... At the same level as components, pages, css, etc, create a package called startup or something like that. It needs to build into WEB-INF/classes/. Then put a class

Integrating Jasypt with Hibernate and Tapstry 5

2011-08-03 Thread Sigbjørn Tvedt
Hi. I am trying to make some fields in the database encrypted by using Jasypt (Following this tutorial http://www.jasypt.org/hibernate3.html ) The part where I am stuck are when I am to register the encryptor. Have any of you done this and care to share the code or some pointers to how I can regi