[T4.1] Problems w/ ognl 2.7 experssion compilation

2008-08-04 Thread Miguel Angel Hernández
Hi, Tapestry 4.1.2 here. We're having a problem involving ognl expression compilation. We have a page with a simple parameter assignation expression, something like: products is a property of type: java.util.Set and sometimes its an instance of java.util.HashSet other times its an instance of

Re: T4 Custom components with iterated child components

2007-10-23 Thread Miguel Angel Hernández
BeanForm component does something similar... you can look at the code to give you some idea. On 10/23/07, Norman Franke <[EMAIL PROTECTED]> wrote: > > I've been working on my custom inline table editor component, and I > figured it would be easier to allow the user of the component to > specify t

Re: Using jsp:include in T3

2007-10-02 Thread Miguel Angel Hernández
Hi Hector, Is there a way to use some kind of jsp:include in T3?? AFAIK there isn't, you can link Tapestry pages from JSP and back but you can combine them in the same page. Look at the Tap3 Faq: http://tapestry.apache.org/tapestry3/faq.html Cheers, Miguel

[Tap4] Page Flickering on Firefox.

2007-08-13 Thread Miguel Angel Hernández
Hi everyone, This is a general web design question. Does anybody knows how to avoid flickering on loading pages? I'm developing a tapestry4 app with tacos, and it suffers of a lot of flcikering when loading pages. This means the browser goes blank before rendering a page, even thought they are usi

Re: Tap4 Injecting a service into a Validator.

2007-06-19 Thread Miguel Angel Hernández
Hi again, I think its pretty hard to make it work as a normal validator, using prefixes, so I decided to include my custom validator as a normal bean and passing it to the validators string with like this $customValidator. thanks again, Miguel On 6/19/07, Miguel Angel Hernández <[EM

Tap4 Injecting a service into a Validator.

2007-06-19 Thread Miguel Angel Hernández
Hi all, I need to inject a hivemind service into a custom Validator implementation, I believe this is possible and I'm wondering if anybody has done something like that before, or could give any hints, please. Thanks in advance, Miguel

Re: Portlet - custom Exception page

2007-06-11 Thread Miguel Angel Hernández
I think that the way to go on this, is adding a contribution to tapestry.InfraestructureOverrides in your hivemodule.xml: cheers, miguel On 5/31/07, Petras Martin, Centire <[EMAIL PROTECTED]> wrote: Hi all, I am trying to change the default Exception page in my portlet applica

Re: Tap4 and Jetty "Form Too Large"

2007-06-08 Thread Miguel Angel Hernández
you have huge hidden fields or something. On Fri, 2007-06-08 at 10:45 -0500, Miguel Angel Hernández wrote: > Hi all, > > We have a little problem here, any help would be appreciated. > We are using tap4 + tacos4 on a Geronimo server (jetty back-end). > I have a @Form which conta

Tap4 and Jetty "Form Too Large"

2007-06-08 Thread Miguel Angel Hernández
Hi all, We have a little problem here, any help would be appreciated. We are using tap4 + tacos4 on a Geronimo server (jetty back-end). I have a @Form which contains a @For component, the problem is sometimes the form is too large and jetty cant handle it, throwing the following error: "java.lang

Re: [OT] who can use selenium to test dojo dialog widget?

2007-06-05 Thread Miguel Angel Hernández
Im also testing my app with selenium, and use waitForCondition for most of my tests... which evaluates a given Javascript expression till returns a truthy value. cheers, Miguel On 6/4/07, Geoff Callender <[EMAIL PROTECTED]> wrote: This clicks on a submit, checks the dialog text, then clicks t

Re: dojo dialog to populate portion of form and submit

2007-05-30 Thread Miguel Angel Hernández
done with js to paint it right). regards, Miguel On 5/30/07, Paul Stanton <[EMAIL PROTECTED]> wrote: how did you handle population of the dialog form portion? Miguel Angel Hernández wrote: > Hi Paul I've been in a very similar situation(but in tap4 with tacos) > you'

Re: dojo dialog to populate portion of form and submit

2007-05-30 Thread Miguel Angel Hernández
Hi Paul I've been in a very similar situation(but in tap4 with tacos) you're in. To solve it I decided to implement my own Dialog component which can be contained inside a form, and this worked fine for me. I've controlled the show and hide issue with Javascript and css. So the component its alway

Simple For component in tapestry 4.0

2007-04-13 Thread Miguel Angel Hernández
Hi all, We recently stumbled with the following problem regarding a For component. We have a tamplate more less like this: Value: The collections has a number elements say three: public void

Re: I thought this was a newsgroup about Tapestry ;-)

2007-03-27 Thread Miguel Angel Hernández
I find maven extremely useful, not only for my own projects. But also for building fresh checkouts from other os projects. Its really time saving and handy. We are currently working in a multimodule project using maven and it's working charmingly. On 3/27/07, D&J Gredler <[EMAIL PROTECTED]> wrote

Re: Tap4 Obtaining assets dynamically

2007-03-20 Thread Miguel Angel Hernández
he factory like this: getAssetFactory().createAbsolute("context-path-to-file", getPage().getLocale(),getLocation()); I got this hint by reading the HiveDoc for tapestry, which imho is a little hard to read... regards, miguel On 3/19/07, Miguel Angel Hernández <[EMAIL PROTECTED]>

Tap4 Obtaining assets dynamically

2007-03-19 Thread Miguel Angel Hernández
Hi all, Does anybody nows a way to obtain Assets dynamically? cheers, miguel

Re: Hivemind Registry and Spring

2007-03-16 Thread Miguel Angel Hernández
or know the context parameter it is stored in, which I don't remember off hand as I've never used it ) On 3/14/07, Miguel Angel Hernández <[EMAIL PROTECTED]> wrote: > Hi all, > > How can I expose the Hivemind Registry in a spring bean? > > thanks > > Miguel >

Cant Checkout tapestry-spring project

2007-03-14 Thread Miguel Angel Hernández
Hi all, I cant CO tapestry-spring trunk: Authentication realm: Subversion Repository Username: svn: PROPFIND request failed on '/svn/tapestry/tapestry-spring/trunk' svn: PROPFIND of '/svn/tapestry/tapestry-spring/trunk': authorization failed (http://svn.javaforge.co

Hivemind Registry and Spring

2007-03-14 Thread Miguel Angel Hernández
Hi all, How can I expose the Hivemind Registry in a spring bean? thanks Miguel

Re: Injecting hivemind properties into spring beans

2007-03-14 Thread Miguel Angel Hernández
g serviceId) { this.serviceId = serviceId; } public Class getServiceInterface() { return serviceInterface; } public void setServiceInterface(Class serviceInterface) { this.serviceInterface = serviceInterface; } } On 12/13/06, Miguel Angel Hernández <[EMAIL PRO

Re: Tap 4.0.3 HttpSession and WebSession

2007-03-09 Thread Miguel Angel Hernández
ted? They are empty? What about restart service? You can try to post your hivemodule.xml part where you inject Session/Response services into your pages/services. Renat On 07/03/07, Miguel Angel Hernández <[EMAIL PROTECTED]> wrote: > Renat Thanks a lot, > > Unfortunately I've alr

Re: Tap 4.0.3 HttpSession and WebSession

2007-03-06 Thread Miguel Angel Hernández
apidocs/org/apache/tapestry/web/WebSession.html#invalidate() On 06/03/07, Miguel Angel Hernández <[EMAIL PROTECTED]> wrote: > Hi all, > > Anybody knows how I can access the HttpSession from tapestry... I found > RequestCycle: getRequestContext():getSession()... but its > deprecat

Tap 4.0.3 HttpSession and WebSession

2007-03-06 Thread Miguel Angel Hernández
Hi all, Anybody knows how I can access the HttpSession from tapestry... I found RequestCycle: getRequestContext():getSession()... but its deprecated. I need to invalidate the session in order to logout from JAAS realm, I've tried WebSession():invalidate() but it doesn't work :(

Regarding @Persist and @InitialValue on Tapestry 4.0.3

2007-03-05 Thread Miguel Angel Hernández
Hi all, I recently stumbled into this http://spod.cx/s?dd2, It's about the behavior of a @Persist property with @InitialValue annotation... it seems that the value of the persistent property is been reseted by the InitialValue thus value is lost. Is this issue solved, or reported? I couldn't find

Re: WANTED: Tapestry Success Stories

2007-01-24 Thread Miguel Angel Hernández
Yes: Ixe's bank portal is done in Tap3, also they have a really big Customer Assistance System build on Tapestry. I will forward this mail to one of the main developers to see what details we can get. Regards, Migs On 1/24/07, Darío Vasconcelos <[EMAIL PROTECTED]> wrote: An important part

Problems with Jetty and a Webapp

2006-12-19 Thread Miguel Angel Hernández
Hi everyone, Is anyone fammiliar with this kind of exception from Jetty: [HttpConnection] GET /soni/liquidacion/Liquidaciones.html?tap_jsc_ts=1166488843005 HTTP/1.1 java.io.IOException: closed at org.mortbay.http.HttpOutputStream.prepareOutput( HttpOutputStream.java:452) at org.mo

Re: Injecting hivemind properties into spring beans

2006-12-13 Thread Miguel Angel Hernández
Stefan, How did this turned out? I ran into a similar problem, and found this link very usefull: http://hivemind.apache.org/hivemind/BuilderFactory.html Indeed injecting spring services in hivemind's is fairly easy, though backwards is'nt... Miguel

Automated Testing Tool

2006-12-12 Thread Miguel Angel Hernández
Hi all, Are there any tools that allow to build automated tests for tapestry apps? Do they suport Tacos and Dojo? cheers, miguel