Re: t5: forwarding in index

2009-05-12 Thread martijn.list
Borut Bolčina wrote: So it is not AuthenticationProcessingFilter responsible for taking control of the authentication because the form posts to j_spring_security_check url. I misunderstood your initial posting. Because I set action to the AuthenticationProcessingFilter URL Spring handles my au

Re: t5: forwarding in index

2009-05-12 Thread Borut Bolčina
Hi, warming up this thread again... So it is not AuthenticationProcessingFilter responsible for taking control of the authentication because the form posts to j_spring_security_check url. How does your "Check" page look like? Are you using the authenticate method of the AbstractUserDetailsAuthe

Re: t5: forwarding in index

2009-04-16 Thread martijn.list
no I do not have any information, sadly. I had to ditch the concept of having tapestry form together with tapestry-spring-security. Perhaps I misunderstand what you are trying to do but I do have a Tapestry form that uses Spring security to authenticate the user. My form looks like: Nam

Re: t5: forwarding in index

2009-04-16 Thread Massimo Lusetti
On Thu, Apr 16, 2009 at 9:58 AM, Peter Stavrinides wrote: > I hope Howard will reconsider. You could look at the archives and look for something like "server side redirect/forward" where Howard say to fire a Jira issue to have this feature, he also hypothesize the name of the API. Regards -- M

Re: t5: forwarding in index

2009-04-16 Thread Peter Stavrinides
009 22:55:12 GMT +02:00 Athens, Beirut, Bucharest, Istanbul Subject: Re: t5: forwarding in index Hi, no I do not have any information, sadly. I had to ditch the concept of having tapestry form together with tapestry-spring-security. I was quite disappointed as this issue was closed so quic

Re: t5: forwarding in index

2009-04-15 Thread Borut Bolčina
Hi, no I do not have any information, sadly. I had to ditch the concept of having tapestry form together with tapestry-spring-security. I was quite disappointed as this issue was closed so quickly. -Borut 2009/4/15 Francois Armand : > Borut Bolčina wrote: >> >> It is now: https://issues.apache.

Re: t5: forwarding in index

2009-04-15 Thread Massimo Lusetti
On Wed, Apr 15, 2009 at 3:48 PM, Francois Armand wrote: > Borut Bolčina wrote: >> >> It is now: https://issues.apache.org/jira/browse/TAP5-607 >> > > This bug was closed without real solution nor bypass, do you had some more > information about it ? If i'm not wrong Howard asked (in another thre

Re: t5: forwarding in index

2009-04-15 Thread Francois Armand
Borut Bolčina wrote: It is now: https://issues.apache.org/jira/browse/TAP5-607 This bug was closed without real solution nor bypass, do you had some more information about it ? -- Francois Armand Etudes & Développements J2EE Groupe Linagora - http://www.linagora.com Tél.: +33 (0)1 58 18 6

Re: t5: forwarding in index

2009-03-27 Thread Borut Bolčina
To: "Tapestry users" > Sent: Friday, 27 March, 2009 16:33:06 GMT +02:00 Athens, Beirut, Bucharest, > Istanbul > Subject: Re: t5: forwarding in index > > In T5.0.18 forwarding causes ComponentEventException, so it does not > work. I am desperate because of this. > >

Re: t5: forwarding in index

2009-03-27 Thread Peter Stavrinides
nbul Subject: Re: t5: forwarding in index In T5.0.18 forwarding causes ComponentEventException, so it does not work. I am desperate because of this. See thread "integrating T5 a login form with Spring Security" and "Authentication Spring Security Captcha after 3 failed attempts" -bb 2

Re: t5: forwarding in index

2009-03-27 Thread Borut Bolčina
In T5.0.18 forwarding causes ComponentEventException, so it does not work. I am desperate because of this. See thread "integrating T5 a login form with Spring Security" and "Authentication Spring Security Captcha after 3 failed attempts" -bb 2009/3/27 Peter Stavrinides : > Hi Angelo, > > I think

Re: t5: forwarding in index

2009-03-27 Thread Peter Stavrinides
Hi Angelo, I think a server redirect may do what you require, I have not used it yet with Tapestry but it shouldn't be an issue. Try: RequestDispatcher rd = request.getRequestDispatcher("pathToResource"); rd.forward(request, response); You could simply inject the request and response in the page

Re: t5: forwarding in index

2009-03-25 Thread Thiago H. de Paula Figueiredo
On Wed, Mar 25, 2009 at 4:00 AM, Ville Virtanen wrote: > Two possibilities that I can see: > http://tapestry.apache.org/tapestry5/guide/conf.html and > tapestry.suppress-redirect-from-action-requests. Otherwise T5 will send > redirect to browser and the url in the browser changes. It's an option

Re: t5: forwarding in index

2009-03-25 Thread Ville Virtanen
Two possibilities that I can see: http://tapestry.apache.org/tapestry5/guide/conf.html and tapestry.suppress-redirect-from-action-requests. Otherwise T5 will send redirect to browser and the url in the browser changes. Other is some url re-write magic. - Ville Angelo Chen wrote: > > Hi, >