Re: Override session expiration page

2006-09-22 Thread andyhot
Karthik N wrote: > andy, while i have your attention :-), i had a question: > > handleStaleSessionException on the engine class - when does it get > called in > a request-response cycle? > > will it get called only during a stateful form, or will it get called > even > before any tapestry page gets

Re: Override session expiration page

2006-09-22 Thread Karthik N
andy, while i have your attention :-), i had a question: handleStaleSessionException on the engine class - when does it get called in a request-response cycle? will it get called only during a stateful form, or will it get called even before any tapestry page gets validated. the issue i have is

Re: Override session expiration page

2006-09-22 Thread andyhot
Karthik N wrote: > follow the thread: Expired Session Message - nabble seems to have > mixed 2 or > 3 threads in 1. nope, it's not nabble's fault. In order to send new mails to this list, some people are used to just clicking on reply on some other mail and changing its subject. > > the gist, as

Re: Override session expiration page

2006-09-22 Thread Karthik N
i've been reading up on this http://www.nabble.com/Asynchronous-form-submission-tf2253801.html#a6270976 follow the thread: Expired Session Message - nabble seems to have mixed 2 or 3 threads in 1. the gist, as i've gathered so far - you can create and register your own StaleSession page good l

Re: EventListener can update a For component ?

2006-09-22 Thread Jesse Kuhnert
I just noticed and fixed it, but can't "quite" do a new snapshot release until some date parsing issues get resolved. It wouldn't be extremely hard for you to fix temporarily...The tapestry.corepackage ( core.js) had a bug in the load() function...When it found an includescript element it would c

Override session expiration page

2006-09-22 Thread Phillip Rhodes
I would like to change the default Session Expiration page that tapestry uses. Any pointers? I can't find this in the docs. Thanks. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTE

Re: How to listent for the Request Cycle End

2006-09-22 Thread Dobrin Ivanov
Cool :) Thanks a lot, it works for me too :) It seems that the documentation is poor or I am not searching at the right place..? --- Bryan Lewis <[EMAIL PROTECTED]> wrote: > I believe the reason the WebRequestServicerFilter > was suggested was to > avoid that inelegant bit. This worked for me:

Re: How to listent for the Request Cycle End

2006-09-22 Thread Bryan Lewis
I believe the reason the WebRequestServicerFilter was suggested was to avoid that inelegant bit. This worked for me: public class WebRequestFilter implements WebRequestServicerFilter { private ApplicationStateManager appStateManager; pub

Re: EventListener can update a For component ?

2006-09-22 Thread Roberto Ramírez Vique
Thanks Patrick!!! I've look to this component and now I use a "workarround" I show a radio button to select which item the user wants to remove. This radio button keeps the for index, and in the server side I can refer directly to the correct element. This works fine!!! I'm happy to see that this

Re: LinkSubmit in For - need index as a parameter (Tapestry 4.1.1)

2006-09-22 Thread Martin Strand
Shouldn't the remove link be a DirectLink? That's how I do it. On Fri, 22 Sep 2006 21:16:47 +0200, Peter Beshai <[EMAIL PROTECTED]> wrote: I have some items listed by a ForBean that have a remove link (LinkSubmit component). I would like the remove link to take the index of the ForBean as a

LinkSubmit in For - need index as a parameter (Tapestry 4.1.1)

2006-09-22 Thread Peter Beshai
I have some items listed by a ForBean that have a remove link (LinkSubmit component). I would like the remove link to take the index of the ForBean as a parameter so that they can all call the same listener, but the Tapestry site says "Parameter(s) gathered at the time the link is triggered" (fr

RE: How to listent for the Request Cycle End

2006-09-22 Thread Dobrin Ivanov
Thanks, now it works. My filter is : - public void service(WebRequest request, WebResponse response, WebRequestServicer servicer) throws IOException { // Request Cycle Begin servicer.service(request, response); // Request Cycle End WebSession webSess

Re: tapestry - session / form management

2006-09-22 Thread CincyVenkat
How do I get the form dirty at first time around. karthik.nar wrote: > > it appears your hibernate session is not getting flushed properly. are > you > using transaction boundaries? > > somehow even though your objects are getting dirtied the first time > around, > it is the second time dirty

Re: tapestry - session / form management

2006-09-22 Thread Karthik N
it appears your hibernate session is not getting flushed properly. are you using transaction boundaries? somehow even though your objects are getting dirtied the first time around, it is the second time dirty of the form field that's causing the hibernate session to flush/commit to the DB. On

tapestry - session / form management

2006-09-22 Thread Venkat
Hi, We have been using the Tapestry 4.0, Hibernate(annotations) with Hivemind. I have a wiered bug for couple of days. Could you help me in what I am missing ? I have main page with sub-page has 2 text boxes and a button, text box 1 is disabled, when user click on button, it will go t

RE: How to listent for the Request Cycle End

2006-09-22 Thread James Carman
Sorry. Try tapestry.request.WebRequestServicerPipeline. As I said, it was off the top of my head. Sorry for the typo. -Original Message- From: Dobrin Ivanov [mailto:[EMAIL PROTECTED] Sent: Friday, September 22, 2006 1:45 PM To: Tapestry users Subject: RE: How to listent for the Request

RE: How to listent for the Request Cycle End

2006-09-22 Thread Dobrin Ivanov
10x Now i get the error below. Any chance that there are some docs for this? 1547 [main] ERROR org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/weprom] - Servlet /weprom threw load() exception org.apache.hivemind.ApplicationRuntimeException: Error at context:/WEB-INF/hivemodule.xm

RE: How to listent for the Request Cycle End

2006-09-22 Thread James Carman
You can put it in your WEB-INF folder or in WEB-INF/classes/META-INF. Tapestry (actually HiveMind) will find it in either case. -Original Message- From: Dobrin Ivanov [mailto:[EMAIL PROTECTED] Sent: Friday, September 22, 2006 1:26 PM To: Tapestry users Subject: RE: How to listent for the

RE: How to listent for the Request Cycle End

2006-09-22 Thread Dobrin Ivanov
And where should be located my hivemodule.xml? (I'm using just Tapestry, I know it lies above hivemind microkernel...) --- James Carman <[EMAIL PROTECTED]> wrote: > To plug into the WebRequestServicerPipeline, you > implement the > WebRequestServicerFilter interface: > > public class MyFilter i

Re: EventListener can update a For component ?

2006-09-22 Thread Patrick Moore
take a look at the For component docs. This component has pretty good doc that talks about that issue.

Re: What does your project directory structure look like?

2006-09-22 Thread D&J Gredler
I actually haven't had to do any debugging yet, so I haven't crossed this bridge... but I assume you'd have to use external debugging. Maybe Josh has some advice :-) On 9/22/06, Robin Ericsson <[EMAIL PROTECTED]> wrote: Really nice. Have to try that. How to use debugging in eclipse from that?

Re: How do I intercept an org.apache.hivemind.ApplicationRuntimeException?

2006-09-22 Thread Jesse Kuhnert
Yeah it's not possible on the client side. (security ) I'm not sure I like the generic error being thrown though, it seems like it would be nicer to be able to validate the form instead but I know that the IO streams might not make this possible. (Ie once it's open it's open and the data is going

RE: How do I intercept an org.apache.hivemind.ApplicationRuntimeException?

2006-09-22 Thread Thomas.Vaughan
Thanks for the info, Ben. This is depressing, though. This means that the entire file needs to be uploaded to the server before you can validate it is less than the max allowed size, right? Ugh. -Original Message- From: Ben Dotte [mailto:[EMAIL PROTECTED] Sent: Thursday, September 21,

Re: BeanForm and no setter method for persistence id

2006-09-22 Thread D&J Gredler
Cool, thanks for the update! On 9/22/06, Claus Myglegaard Vagner <[EMAIL PROTECTED]> wrote: Hi Daniel, You are quite right! No problem with BeanForm component. The problem were somewhere else in the code... Claus D&J Gredler skrev: > Are you listing the properties explicitly, i.e. > properti

Re: What does your project directory structure look like?

2006-09-22 Thread Robin Ericsson
On 9/22/06, D&J Gredler <[EMAIL PROTECTED]> wrote: There's a Maven2 Eclipse plugin (http://maven.apache.org/eclipse-plugin.html) that will read your pom.xml (Project Object Model) and auto-update the Eclipse build path for the project. There's even an option to have it download the source code fo

Re: BeanForm and no setter method for persistence id

2006-09-22 Thread Claus Myglegaard Vagner
Hi Daniel, You are quite right! No problem with BeanForm component. The problem were somewhere else in the code... Claus D&J Gredler skrev: Are you listing the properties explicitly, i.e. properties="name,description"? If that's the case, I don't see how the BeanForm knows anything at all a

RE: Expired Session message

2006-09-22 Thread Greg.L.Cormier
I still have been unable to get this to work unfortunately and it's been thrown in the "Low priority" pile :( -Original Message- From: karthik.nar [mailto:[EMAIL PROTECTED] Sent: Friday, September 22, 2006 1:35 AM To: users@tapestry.apache.org Subject: Re: Expired Session message Hey G

Re: Unsubscribe

2006-09-22 Thread Martin Strand
That page says "[EMAIL PROTECTED]" but according to the headers in this very message, it appears the address is really "[EMAIL PROTECTED]": List-Unsubscribe: On Fri, 22 Sep 2006 14:24:53 +0200, Rui Pacheco <[EMAIL PROTECTED]> wrote: Hi all I tried to unsubsc

Unsubscribe

2006-09-22 Thread Rui Pacheco
Hi all I tried to unsubscribe following whats described here ( http://tapestry.apache.org/unsubscribe.html) but I received a permanent error from the server saying it wasn't possible. Is it possible for one of the admins to remove me from the mailing list? -- Cumprimentos, Rui Pacheco

Re: Keep your visit going to https?

2006-09-22 Thread Danny Angus
what applicationserver are you using and how is your webserver configured? "James Sherwood" <[EMAIL PROTECTED]> wrote on 22/09/2006 13:16:28: > Hello, > > We have a shopping cart site built and the actuall site is not secure until > you go to the checkout phase. > > The checkout button sen

Re: What does your project directory structure look like?

2006-09-22 Thread D&J Gredler
There's a Maven2 Eclipse plugin (http://maven.apache.org/eclipse-plugin.html) that will read your pom.xml (Project Object Model) and auto-update the Eclipse build path for the project. There's even an option to have it download the source code for all the dependencies (for easier debugging), but I

Keep your visit going to https?

2006-09-22 Thread James Sherwood
Hello, We have a shopping cart site built and the actuall site is not secure until you go to the checkout phase. The checkout button sends you to the checkout page and everything worked fine untill we made that page secure. As soon as we made it secure we lose our visit. I assume it is bec

Re: What does your project directory structure look like?

2006-09-22 Thread Robin Ericsson
On 9/22/06, D&J Gredler <[EMAIL PROTECTED]> wrote: I've used Maven2 to manage my newest project, and I'm quite happy with all the freebies you get when you follow their standard directory structure: builds, source builds, unit testing, test coverage, site building, dependency management (inside e

Re: What does your project directory structure look like?

2006-09-22 Thread D&J Gredler
I've used Maven2 to manage my newest project, and I'm quite happy with all the freebies you get when you follow their standard directory structure: builds, source builds, unit testing, test coverage, site building, dependency management (inside eclipse, too) etc. The site-building module for Maven

Problem with tacos:Grid component

2006-09-22 Thread Edoardo Campagnano
Hi, I've been able to run the Tacos demos on my tomcat installation, then I try to copy some elements in my Page components. Alol ok but the Grid. When it reneders the copy of the demo, instead of renedering the rows as .. rows:[ {stringColumn:"String 0",intColumn:0,floatColumn:0.0,dateColum

Re: application namespace message catalog question

2006-09-22 Thread soir
Yes, I know. In my case, I have duplicated messages in the application, and in the library, which is part of the same application. Mark Lehmacher wrote: > > > Libraries can have their own message catalog. Just put a > .properties file into the same package where your > .library specification

Re: application namespace message catalog question

2006-09-22 Thread Mark Lehmacher
Libraries can have their own message catalog. Just put a .properties file into the same package where your .library specification resides. Original-Nachricht Datum: Thu, 21 Sep 2006 23:22:28 -0700 (PDT) Von: soir <[EMAIL PROTECTED]> An: users@tapestry.apache.org Betreff: Re: a

Re: Alternate way to @EventListener with java 1.4

2006-09-22 Thread Numa Schmeder
Thanks Denis, I will check the tacos component. Numa Le 21 sept. 06 à 22:27, Denis Souza a écrit : I don't know if you can use it in Tap 4.1 but tacos 4 has a "AjaxEventSubmit" component that does something similar. I'm not sure it does everything @EventListener does, but maybe it's enough

Re: EventListener can update a For component ?

2006-09-22 Thread Roberto Ramírez Vique
Thanks you!!! In fact I see this comment in another thread and I already did this. Now I have another problem, probably a problem easy to be solved, but I don't see how to do this. My problem is that I have a "remove" for the same list, and I have to pass the list index to the serverside... but