not preserved

2009-02-05 Thread rs1050
Hi, I discovered that   is not preserved, and the resulting html has plain space. This is a problem for my site. Example: http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";> http://tapestry.apache.org/schema/tapestry_5_0_0.xsd"; xmlns="http://www.w3.org/1999/xhtml"; xml:space="prese

RE: tapestry-spring-security: how to set ASO on successful login?

2008-12-07 Thread rs1050
Off topic: is there a way of instructing spring-security not to create a session before authentication (kind of 'no role at all' rather than ROLE_ANONYMOUS)? I am thinking about a web site with big traffic - creation of too many sessions for public pages will really slow it down... Jonathan Bark

RE: tapestry-spring-security: how to set ASO on successful login?

2008-12-07 Thread rs1050
Why do you expect that the session already exists so that you have to invalidate it? Does spring-security create it automatically? > Session s = _request.getSession(false); > s.invalidate(); > s = _request.getSession(true); -- View this message in context: http://www.nabble.com

Re: tapestry-spring-security: how to set ASO on successful login?

2008-12-07 Thread rs1050
I was using tapestry-spring-security. -- View this message in context: http://www.nabble.com/tapestry-spring-security%3A-how-to-set-ASO-on-successful-login--tp20865863p20885666.html Sent from the Tapestry - User mailing list archive at Nabble.com. -

RE: tapestry-spring-security: how to set ASO on successful login?

2008-12-07 Thread rs1050
Thank you Jonathan, My login page is 'user/login', and this is what i have in configuration of spring-security: configuration.add("spring-security.loginform.url", "/user/login"); configuration.add("spring-security.failure.url", "/user/login/failed"); Then spring-security hijacks

tapestry-spring-security: using custom AuthenticationProcessingFilter

2008-12-06 Thread rs1050
I am trying to use my custom implementation of org.springframework.security.ui.webapp.AuthenticationProcessingFilter with tapestry-spring-security. By looking at the source of tapestry-spring-security i see this in SecurityModule: public static void contributeHttpServletRequestHandler(

RE: tapestry-spring-security: how to set ASO on successful login?

2008-12-06 Thread rs1050
Thank you. "You could work with the ASO in the relevant onSuccess method." - i wish i could - my onSuccess method for my Login page is *not* being called b/c tapestry-spring-security filter hijacks the request to that url. Once spring-security's filter (and it is not a Tapestry's filter) start pr

Re: tapestry-spring-security: how to set ASO on successful login?

2008-12-05 Thread rs1050
sorry, instead of "and my Index java page in never called" i meant "and my Login java page is never called". -- View this message in context: http://www.nabble.com/tapestry-spring-security%3A-how-to-set-ASO-on-successful-login--tp20865863p20865881.html Sent from the Tapestry - User mailing list

tapestry-spring-security: how to set ASO on successful login?

2008-12-05 Thread rs1050
Hi, I would like to create and set ASO on successful login. Without using tapestry-spring-security my Login page looked like this: public class Login { Object onSuccess() { boolean authResult = authenticate(); if (authResult) { // create and set ASO 'myState'

Re: Multi-select list

2008-11-17 Thread rs1050
I saw palette, but I would like to have just one list from which users can highlight several rows - not have to move them around from 'available' to 'selected' (which requires two lists) Thank you. Roman. -- View this message in context: http://www.nabble.com/Multi-select-list-tp20533280p205383

Multi-select list

2008-11-16 Thread rs1050
Hi, I could not find multi-select list in the list of T5 components. Appreciate if you can point me to right place of how to use/get it. Thank you. Roman. -- View this message in context: http://www.nabble.com/Multi-select-list-tp20533280p20533280.html Sent from the Tapestry - User mailing lis

Re: subpackages under .pages

2008-09-25 Thread rs1050
i was using http://localhost:8080/app/customer/CustomerData instead of http://localhost:8080/customer/CustomerData. Thank you very much for your help! Onno Scheffers-3 wrote: > >> >> pages->customer->CustomerData.java >> pages->manager->Manager.java >> >> webapp->customer->CustomerData.tml >>

subpackages under .pages

2008-09-24 Thread rs1050
Hi, I am trying to figure how how to structure my templates and pages into dedicated sub-packages like: pages->customer->CustomerData.java pages->manager->Manager.java webapp->customer->CustomerData.tml webapp->manager->Manager.tml is it possible? How to refer to these pages in the url? .../cu