Re: login with stored procedure

2010-10-21 Thread Andrey Gladilin
e it. >>>> link: >>>> http://shiro.apache.org/configuration.html#Configuration-EncryptingPasswords >>>> >>>> Could you advise? >>>> Thanks. >>>> >>>> >>>> On Sun, Oct 17, 2010 at 9:15 AM, ael wrote: >>

Re: login with stored procedure

2010-10-20 Thread Andrey Gladilin
;>> >>> On Sun, Oct 17, 2010 at 9:15 AM, ael wrote: >>>> >>>> In Postgres >>>> >>>> you can create a function that will return a boolean data type. >>>> >>>> Then let tapestry decide ^_^. >>>> -- >

Re: login with stored procedure

2010-10-20 Thread Andrey Gladilin
ro.apache.org/configuration.html#Configuration-EncryptingPasswords >> >> Could you advise? >> Thanks. >> >> >> On Sun, Oct 17, 2010 at 9:15 AM, ael wrote: >>> >>> In Postgres >>> >>> you can create a function that will retur

Re: login with stored procedure

2010-10-19 Thread Kalle Korhonen
> >> Then let tapestry decide ^_^. >> -- >> View this message in context: >> http://tapestry.1045711.n5.nabble.com/login-with-stored-procedure-tp3215112p3215941.html >> Sent from the Tapestry - User mailing list archive at Nabble.com. >> >> --

Re: login with stored procedure

2010-10-19 Thread Andrey Gladilin
gt; http://tapestry.1045711.n5.nabble.com/login-with-stored-procedure-tp3215112p3215941.html > Sent from the Tapestry - User mailing list archive at Nabble.com. > > - > To unsubscribe, e-mail: users-unsubscr...@tapestry.

Re: login with stored procedure

2010-10-16 Thread ael
In Postgres you can create a function that will return a boolean data type. Then let tapestry decide ^_^. -- View this message in context: http://tapestry.1045711.n5.nabble.com/login-with-stored-procedure-tp3215112p3215941.html Sent from the Tapestry - User mailing list archive at Nabble.com

Re: login with stored procedure

2010-10-16 Thread Chris Poulsen
Hi, On 16-10-2010 15:50, Andrey Gladilin wrote: Hi guys, Is there a way to make authentication in Tapestry using store procedure. Yes, Tapestry does not care much about how you implement your security. I have several stored procedures in Postgres, like login(session_id, username, passwor

Re: login with stored procedure

2010-10-16 Thread Kalle Korhonen
Hibernate has a fine support for executing stored procedures (see e.g. http://blog.randompage.org/2008/03/stored-procedures-made-easy-with.html). Probably similar for Spring Security but at least with Tynamo's tapestry-security module (http://tynamo.org/tapestry-security+guide), you'd just need to

Re: login with stored procedure

2010-10-16 Thread Thiago H. de Paula Figueiredo
On Sat, 16 Oct 2010 10:50:50 -0300, Andrey Gladilin wrote: Hi guys, Hi! Is there a way to make authentication in Tapestry using store procedure. I have several stored procedures in Postgres, like login(session_id, username, password, locale) logout(session_id) get_roles(session_id)

login with stored procedure

2010-10-16 Thread Andrey Gladilin
Hi guys, Is there a way to make authentication in Tapestry using store procedure. I have several stored procedures in Postgres, like login(session_id, username, password, locale) logout(session_id) get_roles(session_id) I was trying to use Spring Security, but did not find a way to use stor