RE: FormFragment issue with radiobutton

2012-03-15 Thread Anuj Mittal
Thanks Beat for your reply. I am new to tapestry can you please point me to how\where to add these custom effects. -Original Message- From: Beat Durrer [mailto:bdur...@gmail.com] Sent: Friday, March 16, 2012 12:12 AM To: Tapestry users Subject: Re: FormFragment issue with radiobutton H

Re: T5 Class Reloading & InvalidationListener

2012-03-15 Thread Norman Franke
Ah, yes. Somehow my Tapestry live reloading stopped working under Tomcat 6. Off to fix that problem... Norman Franke Answering Service for Directors, Inc. www.myasd.com On Mar 15, 2012, at 5:45 PM, Josh Canfield wrote: It sounds like you have Tomcat set to watch for changes to your webapp

Re: T5 Class Reloading & InvalidationListener

2012-03-15 Thread Josh Canfield
It sounds like you have Tomcat set to watch for changes to your webapp and reload the whole context. If tomcat is reloading your context and giving you that message, then you aren't actually using tapestry's class reloading feature, right?. The InvalidationEventHub calls objectWasInvalidated when

T5 Class Reloading & InvalidationListener

2012-03-15 Thread Norman Franke
I'm using Tapestry 5.2.5 I have a library I'm using that makes use of Apache Commons IO. As a result, I need to call FileCleaner.exitWhenFinished() to stop the thread, or else my application's memory usage grows about 300 MB each time Tapestry does a class reload on my development box. Af

Re: FormFragment issue with radiobutton

2012-03-15 Thread Beat Durrer
Hi all, Have you tried using a custom show/hide effect, which is faster? I'm using this one: Tapestry.ElementEffect = { fastfade: function(element){ Effect.Fade(element, { duration: 0.1 }); }, fastshow: function(element){ Effect.Appear(element, { duration: 0.5 });

tapestry-spring-security: Custom UsernamePasswordAuthenticationFilter

2012-03-15 Thread Beat Durrer
Hi guys I'm using T5.3.2 with tapestry-spring-security 3.0.3 I want to do some custom redirecting when a user logs in, so I tried several ways to override the UsernamePasswordAuthenticationFilter of tapestry-spring-security, but all failed. The build Method looks like this: public RoleBasedAuth

Re: memory leaks

2012-03-15 Thread Nicolas Barrera
Thiago, thanks for the info I don't want to turn off topic but, what jvm would you recommend instead of oracle's? ps: note that while just class reloading OutOfMemoryError takes a while to appear, but when reloading the application context it really blowns fast (2 or 3 reloads as I said). So for

Re: Envoke Services (Methods of Services) remotley using JSONRPC

2012-03-15 Thread Thiago H. de Paula Figueiredo
On Thu, 15 Mar 2012 13:24:40 -0300, Lance Java wrote: Take a look at the link I sent you in regard to using CXF with Tapestry. To use jsonrpc4j with Tapestry you will need to tell tapestry to ignore certain paths using contributeIgnorePathsFilter() in your AppModule This is correct, unless

Re: memory leaks

2012-03-15 Thread Thiago H. de Paula Figueiredo
On Thu, 15 Mar 2012 13:13:32 -0300, Nicolas Barrera wrote: I 'm having an issue using mvn:jetty (which can reload the context by pressing enter on the console)... after I press enter (reload context) let's say 3 times an outofmemoryerror turns out... This is a combination of live class re

Re: Envoke Services (Methods of Services) remotley using JSONRPC

2012-03-15 Thread Lance Java
Take a look at the link I sent you in regard to using CXF with Tapestry. To use jsonrpc4j with Tapestry you will need to tell tapestry to ignore certain paths using contributeIgnorePathsFilter() in your AppModule By default, the tapestry filter processes every URL. On Thursday, 15 March 2012,

FormFragment issue with radiobutton

2012-03-15 Thread Anuj Mittal
HI All, I have created a RadioButton group with to radio buttons and associated two different formfragment to these radio button. My intention is when user toggle between the two radio button I display different formfragment. But issue is when use toggles radio buttons very fast both the formfra

Re: memory leaks

2012-03-15 Thread Nicolas Barrera
I 'm having an issue using mvn:jetty (which can reload the context by pressing enter on the console)... after I press enter (reload context) let's say 3 times an outofmemoryerror turns out... I 'm not pointing towards tapestry's live class reloading (it doesn't even need context reloading to work

Re: Envoke Services (Methods of Services) remotley using JSONRPC

2012-03-15 Thread stebac
Thank you very much for your very quick response! Both resources are interessting and resteasy has good chances to make the race ;) but just for couriosity: I invested already some time to get jsonrpc4j to work with tapestry and spring, but without luck. I did the configuration exactly as describ

Checklist component can not be disabled

2012-03-15 Thread nicolas.tirode
Hello, I am new in Tapestry, I am using Tapestry 5.3. I have some difficulties to disable a checklist component. I am using it display a list of option. Sometimes I only need a read-only list. Is it possible to disable that list ? Using t:disabled="true" it is not working (it is still displayin

Re: Difference between tml and java importing js

2012-03-15 Thread TechniciuM
Thank you for the explanation. :) -- View this message in context: http://tapestry.1045711.n5.nabble.com/Difference-between-tml-and-java-importing-js-tp5565945p5568052.html Sent from the Tapestry - User mailing list archive at Nabble.com. -

Re: Draft version of Light weight TapestryTools GSoC 2012 project prposal

2012-03-15 Thread Gavin Lei
Yeah, right, i forgot this point, i will add this point into the proposal :-) 在 2012年3月15日 下午7:19,Igor Drobiazko 写道: > Hey Gavin, > > one comment on 5. Autocompletion features: The autocompletion should also > work for fields annotated with @Property, not only plain getters. > > Besides that the

Re: memory leaks

2012-03-15 Thread Thiago H. de Paula Figueiredo
On Thu, 15 Mar 2012 09:14:25 -0300, dick_hu wrote: How can I use live class reloading,Is there any example to me. I can not understand with you. 1) There are no memory leaks in Tapestry related to live class reloading. 2) If you don't know what live class reloading is, why do you think it c

Re: Envoke Services (Methods of Services) remotley using JSONRPC

2012-03-15 Thread Thiago H. de Paula Figueiredo
On Thu, 15 Mar 2012 09:08:31 -0300, stebac wrote: Hallo! Hi! I don't know any JSON-RPC integrations in Tapestry, but of course that doesn't mean it doesn't exist. :) Tapestry itself has a very nice JSON support, which I guess would help write these integrations. Anyway, take a look at

Re: Envoke Services (Methods of Services) remotley using JSONRPC

2012-03-15 Thread Lance Java
You could either use an integrated approach like tynamo's tapestry resteasy http://tynamo.org/tapestry-resteasy+guide Or you could use tapestry and a web service stack (such as apache CXF) side by side http://tapestry.1045711.n5.nabble.com/Tapestry-together-with-CXF-td2425926.html On Thursday, 1

Re: memory leaks

2012-03-15 Thread dick_hu
How can I use live class reloading,Is there any example to me. I can not understand with you. Thank you -- View this message in context: http://tapestry.1045711.n5.nabble.com/memory-leaks-tp5566822p5567806.html Sent from the Tapestry - User mailing list archive at Nabble.com. --

Envoke Services (Methods of Services) remotley using JSONRPC

2012-03-15 Thread stebac
Hallo! Is there an easy way to expose methods of services, so they can be called remotly via JSON-RPC? For my first attempts I used jsonrpc4j (tried it with spring integrateion, like shown in the example on http://code.google.com/p/jsonrpc4j/#Spring_Framework http://code.google.com/p/jsonrpc4j/#S

Re: memory leaks

2012-03-15 Thread Thiago H. de Paula Figueiredo
On Wed, 14 Mar 2012 23:36:42 -0300, dick_hu wrote: there is trouble always with me, when I change a page or a component ofen cause significant memory leaks and I must restart the server. You'll probably don't use live class reloading in production at all, maybe just a little, so the probl

Re: Capturing user input data

2012-03-15 Thread Thiago H. de Paula Figueiredo
On Wed, 14 Mar 2012 19:04:14 -0300, Az Madu wrote: Hi guys, Hi! The "capture user input data" is basically JavaScript. Search the mailing list archives for sending data from JavaScript to Java and you'll find at least some examples. Regarding passing information from one page to anothe

Re: Application startup hook

2012-03-15 Thread Dragan Sahpaski
Hi, On Thu, Mar 15, 2012 at 9:20 AM, Guillaume Bodet wrote: > Hi, > > I'm looking for a way to perform some initialization processing at > application startup. > Is there any hook to trigger such processing? > Sure. Just use @Startup on a method in your registry module(s). SeeL: http://tapestry.a

Re: Draft version of Light weight TapestryTools GSoC 2012 project prposal

2012-03-15 Thread Igor Drobiazko
Hey Gavin, one comment on 5. Autocompletion features: The autocompletion should also work for fields annotated with @Property, not only plain getters. Besides that the features set looks good. I think the result will be an awesome tool. 2012/3/4 Gavin Lei > Hi All, > > After series of survey a

Application startup hook

2012-03-15 Thread Guillaume Bodet
Hi, I'm looking for a way to perform some initialization processing at application startup. Is there any hook to trigger such processing? Best regards Guillaume