web 2.0 ajax .which to choose?

2008-11-09 Thread jim
i'm very impressed with google and yahoo page when the page load, you can see a loading icon and slowly loading the pane. i did my googling and found many library out there, openlaszlo, jquery...etc . which one do you folks recommend to integrate with tapestry? i'm looking for cool rich 2.0 look

T5 : how to handle a zone refresh when the user session has expired ?

2008-11-09 Thread Stephane Decleire
I get the following error when trying to refresh a Zone in my application while the user session has expired : org.apache.tapestry5.runtime.ComponentEventException Forms require that the request method be POST and that the t:formdata query parameter have values. Any idea on how and where i

Re: T5 : how to handle a zone refresh when the user session has expired ?

2008-11-09 Thread Stephane Decleire
It seems that my problem is linked to the correction of the JIRA issue 2563 : https://issues.apache.org/jira/browse/TAPESTRY-2563 What is very strange is that there is 2 t:formdata in the XHR post : here is the firebug post listing : endDateSearch searchLevel SIMPLE select

Re: T5 : how to handle a zone refresh when the user session has expired ?

2008-11-09 Thread Howard Lewis Ship
Very odd that you could end up with an empty t:formdata hidden field. On Sun, Nov 9, 2008 at 6:00 AM, Stephane Decleire [EMAIL PROTECTED] wrote: It seems that my problem is linked to the correction of the JIRA issue 2563 : https://issues.apache.org/jira/browse/TAPESTRY-2563 What is very

Re: T5 : how to handle a zone refresh when the user session has expired ?

2008-11-09 Thread Stephane Decleire
Yes it is .. Seems to be linked to the presence of a FormFragment. Will investigate a bit more ... Stephane Howard Lewis Ship a écrit : Very odd that you could end up with an empty t:formdata hidden field. On Sun, Nov 9, 2008 at 6:00 AM, Stephane Decleire [EMAIL PROTECTED] wrote: It seems

custom validation

2008-11-09 Thread Muralidhar Y
Hi I am trying to add custom validation error but it is showing some exception . do anybody have an idea. I have added the following code in html form jwcid=[EMAIL PROTECTED] success=listener:onWordSubmit delegate=bean:delegate I have added the following in the page xml

Tapestry together with CXF

2008-11-09 Thread Henrik Schlanbusch
Hi I have run into a problem. I have defined two servlets in my web.xml - one tapestry5 and one for apache CXF. I have defined them in a way that I should hit the CXF whenever I run /services/* and tapestry for all other urls. When I try to browse the wsdls on my server, I can see that the

Re: Tapestry together with CXF

2008-11-09 Thread Thiago H. de Paula Figueiredo
Em Sun, 09 Nov 2008 19:08:38 -0300, Henrik Schlanbusch [EMAIL PROTECTED] escreveu: Hi Hi! I have run into a problem. I have defined two servlets in my web.xml - one tapestry5 and one for apache CXF. Strictly speaking, Tapestry 5 is a servlet filter. :) When I try to browse the wsdls

extension of my earlier mail

2008-11-09 Thread Muralidhar Y
The error says Exception: Exception invoking listener method onWordSubmit of component Home: Component Home/homeForm does not define a bean name mydelegate. Warm regards, Muralidhar Y [EMAIL PROTECTED] US Main: 877 KENSIUM (536.7486) India Main: +91 9949495511 India Fax: +91

Re: T5 : how to handle a zone refresh when the user session has expired ?

2008-11-09 Thread Stephane Decleire
I've written a small piece of code to reproduce the second empty t:formdata hidden field : html xmlns:t=http://tapestry.apache.org/schema/tapestry_5_0_0.xsd; body t:form zone=myzone t:label for=field1/ : t:textfield t:id=field1/ t:checkbox t:id=moreFieldsSwitch

Re: Setting Cookies

2008-11-09 Thread Lutz Hühnken
Hm. Works fine for me. What happens if you leave out domain and path, like in cookies.writeCookieValue(Constants.COOKIE_NAME, value) ? On Wed, Nov 5, 2008 at 10:12 PM, Keith Bottner [EMAIL PROTECTED] wrote: I am attempting to set a cookie for a user; however, it does not seem to be

Re: Tapestry together with CXF

2008-11-09 Thread Henrik Schlanbusch
Just add this method to your AppModule: public static void contributeIgnoredPathsFilter(UnorderedCollectionString configuration) { configuration.add(/services/.*); } Thanks man! This seems to be the solution to my problem, but one more thing I cannot get the UnorderedCollection