Re: Tapestry-Acegi / Tapestry-Spring-Security

2009-03-01 Thread Juan E. Maya
of Tapestry-Acegi? Or is there a reason why is not like this? Thanks a lot for your help!

Tapestry-Acegi / Tapestry-Spring-Security

2009-02-28 Thread Juan E. Maya
instead of Tapestry-Acegi? Or is there a reason why is not like this? Thanks a lot for your help!

Has anyone integrated tapestry-acegi with CAS?

2008-11-06 Thread Olle Hallin
Hi! I'm looking for examples/code for how to configure tapestry-acegi to use CAS. Anyone out there that have done this? TIA, Olle Hallin

Re: tapestry-acegi example app question

2008-03-11 Thread Robin Helgelin
On Tue, Mar 11, 2008 at 12:18 AM, Julian Wood [EMAIL PROTECTED] wrote: In the provided example for tapestry-acegi, I have a question about the GrantedAuthorityBean table. That is, if I add more users which share roles, each role will create a new row in the GAB table. How can

Re: tapestry-acegi example app question (solved)

2008-03-11 Thread Robin Helgelin
On Tue, Mar 11, 2008 at 3:37 AM, Julian Wood [EMAIL PROTECTED] wrote: Hate to answer my own question, but I think the proper relation for: is: @ManyToMany( cascade={CascadeType.PERSIST, CascadeType.MERGE} ) You then need to persist your GrantedAuthorityBean independently from

tapestry-acegi example app question

2008-03-10 Thread Julian Wood
In the provided example for tapestry-acegi, I have a question about the GrantedAuthorityBean table. That is, if I add more users which share roles, each role will create a new row in the GAB table. How can this be avoided? I've tried making the authority unique: @Table(uniqueConstraints

Re: tapestry-acegi example app question (solved)

2008-03-10 Thread Julian Wood
/localhost/tapestry/acegi/example/entities/ UserDetailsBean.java On 10-Mar-08, at 5:18 PM, Julian Wood wrote: In the provided example for tapestry-acegi, I have a question about the GrantedAuthorityBean table. That is, if I add more users which share roles, each role will create a new row

[T5][ANN] - Tapestry+Acegi+Spring+JDBC+Hibernate+JPA+HSQLDB all in one

2008-01-22 Thread Mohammad Shamsi
Hi all, latest release of my phone book application is available now, In this release i used : - Tapestry 5.0.7 as a Web MVC framework. - Acegi 1.0.5 as a Security System. - Spring 2.5 as a Application framework. - Spring JDBC for Data Access Layer. - Hibernate 3.2.4 an

Re: [T5][ANN] - Tapestry+Acegi+Spring+JDBC+Hibernate+JPA+HSQLDB all in one

2008-01-22 Thread Baptiste Meurant
Hi, Thank you for this great work. It will be really useful. I still have a question about security T5/acegi integration : the classic solution that you used to perform strong authentication with acegi through T5 is creating a T5 LinkImpl object. You give then parameters (login and

Re: [T5][ANN] - Tapestry+Acegi+Spring+JDBC+Hibernate+JPA+HSQLDB all in one

2008-01-22 Thread Mohammad Shamsi
a simple idea is to change Login.tml to submit directly to acegi filter : form method=POST action=/j_acegi_security_check input type=text name=j_username / input type=password name=j_password / input type=submit value=${message:login}/ /form On Jan 22, 2008 4:43 PM,

Re: [T5][ANN] - Tapestry+Acegi+Spring+JDBC+Hibernate+JPA+HSQLDB all in one

2008-01-22 Thread Baptiste Meurant
Thanks for your response. It is the solution that I decided to use. It is perfectly working but without using T5 mechanisms. I was wondering if some full T5 solution was posible. Thanks again, Baptiste. dalahoo wrote: a simple idea is to change Login.tml to submit directly to acegi filter

Re: [T5][ANN] - Tapestry+Acegi+Spring+JDBC+Hibernate+JPA+HSQLDB all in one

2008-01-22 Thread Mohammad Shamsi
another way : encrypt your and password and then send it with url. you can do this in two way 1 - with java code in Login.java class : this is my sample that used in a project : public String digest(String password, String salt) { if ((password == null) || (salt == null)) {

T5: tapestry-spring v tapestry-acegi

2007-10-15 Thread Christian Gorbach
hi all, has somebody managed to set up a project with tapestry-spring and tapestry-acegi together? As soon as i add the tapestryspring filter to web.xml, tapestry-acegi doesn't work anymore (based on the acegi demo app from robin) snip Exception constructing service 'RememberMeServices': Error

RequestGlobals in tapestry-ACEGI UserDetailsService

2007-10-02 Thread T. Papke
Hi, i have tried the tapestry 5 acegi example providing security controll for tapestry pages. I need the hostname of the requested url for getting the user by username. So i want to have the username per page. I have tried it with RequestGlobals, but it did not work to inject it into this

Re: RequestGlobals in tapestry-ACEGI UserDetailsService

2007-10-02 Thread Robin Helgelin
On 10/2/07, T. Papke [EMAIL PROTECTED] wrote: Hi, Hi! i have tried the tapestry 5 acegi example providing security controll for tapestry pages. I need the hostname of the requested url for getting the user by username. So i want to have the username per page. I have tried it with

T5: help needed with tapestry-acegi

2007-09-17 Thread Thiago H de Paula Figueiredo
Hi! I'm using the wonderful tapestry5-acegi integration but I need some help. I have an user that has a number of roles (GrantedAuthority instances), one of them named Admin. When I annotate a page class with @Secured(Admin), Acegi denies access to the page. I have just tried the same

Re: T5: help needed with tapestry-acegi

2007-09-17 Thread Thiago H de Paula Figueiredo
On Mon, 17 Sep 2007 16:13:03 -0300, Thiago H de Paula Figueiredo [EMAIL PROTECTED] wrote: I have an user that has a number of roles (GrantedAuthority instances), one of them named Admin. After some hours trying to figure out what mistake I have been doing, I've found it! Using the

Re: T5: help needed with tapestry-acegi

2007-09-17 Thread Robin Helgelin
On 9/17/07, Thiago H de Paula Figueiredo [EMAIL PROTECTED] wrote: I have an user that has a number of roles (GrantedAuthority instances), one of them named Admin. When I annotate a page class with @Secured(Admin), Acegi denies access to the page. I have just tried the same page, with the same

Re: T5: help needed with tapestry-acegi

2007-09-17 Thread Thiago H de Paula Figueiredo
On Mon, 17 Sep 2007 16:35:13 -0300, Robin Helgelin [EMAIL PROTECTED] wrote: No, you should be able to have an arbitrary length of roles. How does your public GrantedAuthority[] getAuthorities() from your user UserDetails look? I can't post the code here (and it wouldn't help much, as it's

Re: T5: help needed with tapestry-acegi

2007-09-17 Thread Robin Helgelin
On 9/17/07, Thiago H de Paula Figueiredo [EMAIL PROTECTED] wrote: After some hours trying to figure out what mistake I have been doing, I've found it! Using the default configuration, Acegi only takes into account roles prefixed with ROLE_!!! Acegi's Javadoc states that here:

Re: [T4] Tapestry-Acegi error

2007-08-08 Thread Lutz Hühnken
My first guess would be that you refer to something called ClassWorkers in your hivemodule.xml, but it is undefined. I think it might be helpful if you posted your hivemodule.xml. Hth, Lutz On 8/8/07, kael20 [EMAIL PROTECTED] wrote: Hi, I am trying to setup tapestry-acegi using the wiki

[T4] Tapestry-Acegi error

2007-08-07 Thread kael20
Hi, I am trying to setup tapestry-acegi using the wiki - http://wiki.apache.org/tapestry/AcegiSpringJava5 I have tried for several hours to solve this error but I have been unsuccessful. Hoping someone might be able to shed some light on this: exception javax.servlet.ServletException

Tapestry-Acegi - carmanconsulting.com not responding

2007-06-06 Thread carlos f
Not sure if there is an issue on my end, but the the tapestry-acegi URL is not responding -- http://www.carmanconsulting.com/tapestry-acegi/ Also I can't seem to get anonymous access working to the svn repo - http://svn.javaforge.com/svn/tapestry/tapestry-acegi/trunk I am also having general

Re: tapestry-acegi

2007-05-04 Thread Asim Khaja
I will try it out, thanks a lot. Asim On 5/3/07, William Keller [EMAIL PROTECTED] wrote: I forgot to mention that you will need to map your User and GrantedAuthority as per usual on Acegi. The stuff I gave you doesn't go in depth on setting up your models (your User needs to implement

tapestry-acegi

2007-05-03 Thread Asim Khaja
Is there a good tutorial on using the tapestry-acegi ( http://www.carmanconsulting.com/tapestry-acegi/) library? Thanks, Asim

Re: tapestry-acegi

2007-05-03 Thread William Keller
! On 5/4/07, Asim Khaja [EMAIL PROTECTED] wrote: Is there a good tutorial on using the tapestry-acegi ( http://www.carmanconsulting.com/tapestry-acegi/) library? Thanks, Asim

Re: tapestry-acegi

2007-05-03 Thread William Keller
I forgot to mention that you will need to map your User and GrantedAuthority as per usual on Acegi. The stuff I gave you doesn't go in depth on setting up your models (your User needs to implement UserDetails). Once you set up yoru GrantedAuthority for your users your tapestry pages can now use

tapestry-acegi, how does SecurityUtilsImpl.accessDecisionManager get set?

2007-03-21 Thread Phillip Rhodes
I am implementing acegi/tapestry and pulling apart the wonderful work of James Carman (preserving the copyrights!) and re-implementing for my purposes. My @Secured annotation is erroring out in SecurityUtilsImpl when a call to the accessDecisionManager fails because it is null. How is the

Re: tapestry-acegi, how does SecurityUtilsImpl.accessDecisionManager get set?

2007-03-21 Thread James Carman
The AccessDecisionManager is defined by the hivemind-acegi module. On 3/21/07, Phillip Rhodes [EMAIL PROTECTED] wrote: I am implementing acegi/tapestry and pulling apart the wonderful work of James Carman (preserving the copyrights!) and re-implementing for my purposes. My @Secured annotation

Re: tapestry-acegi, how does SecurityUtilsImpl.accessDecisionManager get set?

2007-03-21 Thread James Carman
Sorry, I hit Send too quickly. Here's the hivemodule (anonymous/anon to login of course): http://svn.javaforge.com/svn/hivemind/hivemind-acegi/trunk/src/main/resources/META-INF/hivemodule.xml On 3/21/07, James Carman [EMAIL PROTECTED] wrote: The AccessDecisionManager is defined by the

Re: tapestry-acegi, how does SecurityUtilsImpl.accessDecisionManager get set?

2007-03-21 Thread Phillip C. Rhodes
Wow, it's evident in that version of hivemodule.xml For whatever reason, I must have a old copy of the tapestry-acegi project because the hivemodule.xml that I have been looking at is very different... Thanks. Phillip - Original Message - From: James Carman [EMAIL PROTECTED

tapestry-acegi for basic auth only?

2007-03-19 Thread Phillip Rhodes
From my understanding of tapestry-acegi (http://www.carmanconsulting.com/tapestry-acegi/) , it appears to support basic authentication, not form-based or other types of authentication. Can someone confirm my view? Thanks

Re: tapestry-acegi for basic auth only?

2007-03-19 Thread Robin Ericsson
On 3/19/07, Phillip Rhodes [EMAIL PROTECTED] wrote: From my understanding of tapestry-acegi (http://www.carmanconsulting.com/tapestry-acegi/) , it appears to support basic authentication, not form-based or other types of authentication. Can someone confirm my view? Confirmed. Although I

Re: tapestry-acegi and tapestry 4.1

2007-03-07 Thread Borut Bolčina
Hello James, can you please update the tapestry-acegi pom. I have downloaded tapestry-acegi from svn, import it into Eclipse, modified the pom.xml and install tapestry-acegi snapshot into my local repo. I used this dependencies and first tests show that my T4.1.1 application which depends

AW: Problem with user logout (Tapestry-Acegi)

2007-02-16 Thread Peter Schröder
22:47 An: users@tapestry.apache.org Betreff: Problem with user logout (Tapestry-Acegi) Hi all, I have a problem when a logged in user are about to logout. If I only empty my user information in session object and using SecurityContextHolder.getContext().setAuthentication(null); to empty the acegi

Re: [WARNING] AW: Problem with user logout (Tapestry-Acegi)

2007-02-16 Thread jake123
Hi Peter, thanks for your response, I tried to add META HTTP-EQUIV=CACHE-CONTROL CONTENT=NO-CACHE in the head tag in all my pages that contains a secured annotation and then tried to logout and hit the back button on my browser and I still get the same result... I end up in the secured page... so

AW: [WARNING] AW: Problem with user logout (Tapestry-Acegi)

2007-02-16 Thread Peter Schröder
Nachricht- Von: jake123 [mailto:[EMAIL PROTECTED] Gesendet: Freitag, 16. Februar 2007 15:26 An: users@tapestry.apache.org Betreff: Re: [WARNING] AW: Problem with user logout (Tapestry-Acegi) Hi Peter, thanks for your response, I tried to add META HTTP-EQUIV=CACHE-CONTROL CONTENT=NO-CACHE

Problem with user logout (Tapestry-Acegi)

2007-02-15 Thread jake123
Hi all, I have a problem when a logged in user are about to logout. If I only empty my user information in session object and using SecurityContextHolder.getContext().setAuthentication(null); to empty the acegi part the user can still come back to the secured page using the browsers back button.

Still having some problem with Tapestry + Acegi

2007-02-12 Thread jake123
Hi, I am still trying to make tapestry + Acegi to work together and I have had some success... I have followed the AcegiSpringJave5 Wiki and some additional codes provided by Robin Ericsson. In my solution now I get authenticated but I dont get redirected to the right page... I end up back

RE: Tapestry-acegi auth

2007-01-05 Thread Firas Adiler
/wb_tutorials/media/SpringAcegiTutorial/HTML/Spri ngAcegiTutorial-1_1-html.html Keep in mind, though, that the tutorial above uses spring-style configuration of acegi, i.e. using application context (xml) config file. Apparently, one could achieve the same result using tapestry-acegi and hivemind

Re: Tapestry-acegi auth

2007-01-05 Thread James Carman
, that the tutorial above uses spring-style configuration of acegi, i.e. using application context (xml) config file. Apparently, one could achieve the same result using tapestry-acegi and hivemind. I couldn't get it to work though. My current (working) acegi configuration is based on this guide: http

Tapestry-acegi auth

2007-01-04 Thread Kevin Menard
Hi, I'm having some difficulty using tapestry-acegi. I can secure a page fine, but I can't figure out how to allow a user to auth. Unfortunately, my experience with Acegi in general is practically non-existent, so I may just be doing something dumb there. I have a page marked @Secured(ROLE_USER

tapestry-acegi and tapestry 4.1

2006-12-26 Thread Robert Binna
Hi I justed wanted to use tapestry-acegi on a project of mine that uses tapestry 4.1. Has someone get it working because the current pom file is for tapestry 4.0? Kind regards, Robert - To unsubscribe, e-mail

Re: tapestry-acegi and tapestry 4.1

2006-12-26 Thread James Carman
I haven't tried it, but it should work as far as I know. You can override the dependency in your own pom file On 12/26/06, Robert Binna [EMAIL PROTECTED] wrote: Hi I justed wanted to use tapestry-acegi on a project of mine that uses tapestry 4.1. Has someone get it working because

Re: @Secured from tapestry-acegi

2006-11-29 Thread Cyrille37
tapestry.acegi.BasicProcessingFilter: Error at jar:file:/D:/tomcat-5.5.17/common/lib/tapestry-acegi-0.1-20060609.153634-9.jar!/META-INF/hivemodule.xml, line 46, column 63: Unable to initialize service tapestry.acegi.BasicProcessingFilter (by invoking method afterPropertiesSet

Re: @Secured from tapestry-acegi

2006-11-29 Thread James Carman
org.apache.hivemind.ApplicationRuntimeException: Unable to construct service tapestry.acegi.BasicProcessingFilter: Error building service tapestry.acegi.BasicProcessingFilter: Error at jar:file:/D:/tomcat-5.5.17/common/lib/tapestry-acegi-0.1-20060609.153634-9.jar!/META-INF/hivemodule.xml, line 46, column 63: Unable to initialize service

Re: @Secured from tapestry-acegi

2006-11-29 Thread Cyrille37
:/tomcat-5.5.17/common/lib/tapestry-acegi-0.1-20060609.153634-9.jar!/META-INF/hivemodule.xml, line 46, column 63: Unable to initialize service tapestry.acegi.BasicProcessingFilter (by invoking method afterPropertiesSet on org.acegisecurity.ui.basicauth.BasicProcessingFilter

@Secured from tapestry-acegi

2006-11-28 Thread Cyrille37
Hello, I'm trying to integrate Acegi by using tapestry-acegi from carmanconsulting.com. I've imported com.javaforge.tapestry.acegi.enhance.* but Java do not recognize the @Secured decoration. import com.javaforge.tapestry.acegi.*; import com.javaforge.tapestry.acegi.enhance

Re: @Secured from tapestry-acegi

2006-11-28 Thread James Carman
The @Secured annotation is from the Acegi library (you have to get the tiger jar). On 11/28/06, Cyrille37 [EMAIL PROTECTED] wrote: Hello, I'm trying to integrate Acegi by using tapestry-acegi from carmanconsulting.com. I've imported com.javaforge.tapestry.acegi.enhance.* but Java do

Re: @Secured from tapestry-acegi

2006-11-28 Thread Cyrille37
applicationContext-security.xml ? Cyrille On 11/28/06, Cyrille37 [EMAIL PROTECTED] wrote: Hello, I'm trying to integrate Acegi by using tapestry-acegi from carmanconsulting.com. I've imported com.javaforge.tapestry.acegi.enhance.* but Java do not recognize the @Secured decoration. import

Re: @Secured from tapestry-acegi

2006-11-28 Thread James Carman
or spring 's applicationContext-security.xml ? Cyrille On 11/28/06, Cyrille37 [EMAIL PROTECTED] wrote: Hello, I'm trying to integrate Acegi by using tapestry-acegi from carmanconsulting.com. I've imported com.javaforge.tapestry.acegi.enhance.* but Java do not recognize the @Secured

Re: @Secured from tapestry-acegi

2006-11-28 Thread Cyrille37
:/tomcat-5.5.17/common/lib/tapestry-acegi-0.1-20060609.153634-9.jar!/META-INF/hivemodule.xml, line 44, column 25] at org.apache.hivemind.impl.servicemodel.AbstractServiceModelImpl.constructNewServiceImplementation(AbstractServiceModelImpl.java:165

Re: @Secured from tapestry-acegi

2006-11-28 Thread James Carman
org.apache.hivemind.ApplicationRuntimeException: Unable to construct service tapestry.acegi.BasicProcessingFilter: Error building service tapestry.acegi.BasicProcessingFilter: Error at jar:file:/D:/tomcat-5.5.17/common/lib/tapestry-acegi-0.1-20060609.153634-9.jar!/META-INF/hivemodule.xml, line 46, column 63: Unable

Re: Re: Re: tapestry-acegi questions

2006-11-16 Thread Robin Ericsson
On 11/14/06, Robin Ericsson [EMAIL PROTECTED] wrote: Hmm, no, never though of that, might be a good idea though. I'll see if I have time to try this today. Ok, debugged and problem found. Safari seems to like to cache the result of the first query to the protected page. I was using a proxy

Re: Re: tapestry-acegi questions

2006-11-14 Thread Robin Ericsson
On 11/12/06, Robin Ericsson [EMAIL PROTECTED] wrote: Thanks to James again :), I have a working solution that redirects after successful login. However, on Firefox it works like a charm, but on Safari it doesn't work as it seems it doesn't process cookies or something the same way. Maybe I

Re: Re: tapestry-acegi questions

2006-11-14 Thread James Carman
Oh, sorry, Robin. I read your last email, but only through the thanks, I've got it working part. :-) I didn't see the questions at the bottom. Do you have something that will let you debug the HTTP traffic? That might help you see what's going on for sure. On 11/14/06, Robin Ericsson [EMAIL

Re: Re: tapestry-acegi questions

2006-11-14 Thread Robin Ericsson
On 11/14/06, James Carman [EMAIL PROTECTED] wrote: Oh, sorry, Robin. I read your last email, but only through the thanks, I've got it working part. :-) I didn't see the questions at the bottom. Do you have something that will let you debug the HTTP traffic? That might help you see what's

Re: Re: tapestry-acegi questions

2006-11-12 Thread Robin Ericsson
On 11/10/06, James Carman [EMAIL PROTECTED] wrote: You could use a callback somehow to do that, I would think. But, you would probably have to implement the auto-redirect-to-login-page logic yourself, so that you could save the callback into the session or set it on the login page as a property

Re: tapestry-acegi questions

2006-11-10 Thread Robin Ericsson
module called tapestry-acegi-rememberme or something so that you could just drop in a jar to allow remember me services. I came around to the same thing after looking at the Acegi basic auth code. I'm doing something like this. @InjectObject(service:hivemind.acegi.AuthenticationManager) public

Re: tapestry-acegi questions

2006-11-10 Thread James Carman
could create a special module called tapestry-acegi-rememberme or something so that you could just drop in a jar to allow remember me services. I came around to the same thing after looking at the Acegi basic auth code. I'm doing something like this. @InjectObject

Re: tapestry-acegi questions

2006-11-03 Thread Jesper Zedlitz
James Carman wrote: Then you're not really using tapestry-acegi. You don't need Spring at all to use tapestry-acegi. But how do I wire /j_acegi_security_check to Acegi? Here is a short summary what I tried until now: * Login page forwards to /j_acegi_security_check? * add a filter

Re: tapestry-acegi questions

2006-11-03 Thread James Carman
What URL mapping are you using for your Tapestry application servlet? On 11/3/06, Jesper Zedlitz [EMAIL PROTECTED] wrote: James Carman wrote: Then you're not really using tapestry-acegi. You don't need Spring at all to use tapestry-acegi. But how do I wire /j_acegi_security_check to Acegi

Re: tapestry-acegi questions

2006-11-03 Thread Jesper Zedlitz
James Carman wrote: What URL mapping are you using for your Tapestry application servlet? This is my mapping without my Acegi experiments: filter filter-nameredirect/filter-name filter-classorg.apache.tapestry.RedirectFilter/filter-class /filter servlet

Re: tapestry-acegi questions

2006-11-03 Thread James Carman
Maybe the form-based security should declare its own dummy engine service? That might be the way to go. I don't know. I'd have to play around with it some. On 11/3/06, Jesper Zedlitz [EMAIL PROTECTED] wrote: James Carman wrote: What URL mapping are you using for your Tapestry application

Re: tapestry-acegi questions

2006-11-03 Thread James Carman
. The HttpSessionContextIntegrationFilter will take care of storing it in the session for you so that each subsequent request will be authenticated. I should maybe look at integrating the remember me stuff into the pipeline. I could create a special module called tapestry-acegi-rememberme or something

Re: tapestry-acegi questions

2006-11-02 Thread James Carman
You're switching to using Spring instead of HiveMind? On 11/2/06, Jesper Zedlitz [EMAIL PROTECTED] wrote: Jesper Zedlitz wrote: When I try to access a secured page it works fine and I get to the login page. After submitting the login form I will be redirected to /j_acegi_security_check But

Re: tapestry-acegi questions

2006-11-02 Thread Jesper Zedlitz
You're switching to using Spring instead of HiveMind? The web application does not start if I do not create a Spring bean: Bean context must contain at least one bean of type org.acegisecurity.ui.webapp.AuthenticationProcessingFilter Jesper -- Jesper Zedlitz E-Mail : [EMAIL PROTECTED]

Re: tapestry-acegi questions

2006-11-02 Thread James Carman
Then you're not really using tapestry-acegi. You don't need Spring at all to use tapestry-acegi. On 11/2/06, Jesper Zedlitz [EMAIL PROTECTED] wrote: You're switching to using Spring instead of HiveMind? The web application does not start if I do not create a Spring bean: Bean context must

Re: tapestry-acegi questions

2006-11-01 Thread Jesper Zedlitz
James Carman wrote: I haven't implemented form-based authentication in tapestry-acegi, yet. But, I don't think it's that difficult, really. Your need to use the AuthenticationProcessingFilter (I don't define it in my hivemodule.xml, but it would be easy to do so in yours) and your form has

RE: Re: tapestry-acegi questions

2006-11-01 Thread Thomas.Vaughan
PROTECTED] On Behalf Of Jesper Zedlitz Sent: Wednesday, November 01, 2006 8:52 AM To: users@tapestry.apache.org Subject: Re: tapestry-acegi questions James Carman wrote: I haven't implemented form-based authentication in tapestry-acegi, yet. But, I don't think it's that difficult, really. Your

Re: Re: tapestry-acegi questions

2006-11-01 Thread James Carman
With Tapestry-Acegi, we're not using the Acegi servlet filter. On 11/1/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Acegi's AuthenticationProcessingFilter is, by default, coded to intercept any web request to j_acegi_security_check. You can override the actual name of the servlet

RE: Re: tapestry-acegi questions

2006-11-01 Thread Thomas.Vaughan
Ohhh...sorry 'bout that. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of James Carman Sent: Wednesday, November 01, 2006 9:08 AM To: Tapestry users Subject: Re: Re: tapestry-acegi questions With Tapestry-Acegi, we're not using the Acegi servlet filter

Re: tapestry-acegi questions

2006-11-01 Thread Robin Ericsson
On 11/1/06, Jesper Zedlitz [EMAIL PROTECTED] wrote: When I try to access a secured page it works fine and I get to the login page. After submitting the login form I will be redirected to /j_acegi_security_check But how do I wire this URL to Acegi? This is where I am too. I was thinking of

Re: tapestry-acegi questions

2006-11-01 Thread James Carman
-based authentication in tapestry-acegi, yet. But, I don't think it's that difficult, really. Your need to use the AuthenticationProcessingFilter (I don't define it in my hivemodule.xml, but it would be easy to do so in yours) and your form has to have two fields named j_username and j_password

Re: Re: tapestry-acegi questions

2006-10-30 Thread Gareth
hi, I'm using the TableView component on what can be visulised as a search page. The whole page is wrapped in a form (so that the paging buttons etc submit the search criteria), and the Form version of TableRow and TablePages are used. Everything appears to work except... I have 2 gripes that

Re: Re: tapestry-acegi questions

2006-10-30 Thread Robin Ericsson
On 10/30/06, Gareth [EMAIL PROTECTED] wrote: hi, I'm using the TableView component on what can be visulised as a search page. Hi, Please don't steal other threads with a new question. -- regards, Robin - To

tapestry-acegi questions

2006-10-29 Thread Robin Ericsson
Hi, There still isn't any tapestry-acegi specific list is there? What I like is to have is to use a webpage for login instead of http basic auth. However, after checking the source of tapestry-acegi it seems like a monster to accomplish based on that I know practially not much at all about

Re: tapestry-acegi questions

2006-10-29 Thread James Carman
Hi, Robin. I haven't implemented form-based authentication in tapestry-acegi, yet. But, I don't think it's that difficult, really. Your need to use the AuthenticationProcessingFilter (I don't define it in my hivemodule.xml, but it would be easy to do so in yours) and your form has to have two

Re: Re: tapestry-acegi questions

2006-10-29 Thread Robin Ericsson
On 10/29/06, James Carman [EMAIL PROTECTED] wrote: Hi, Robin. I haven't implemented form-based authentication in tapestry-acegi, yet. But, I don't think it's that difficult, really. Your need to use the AuthenticationProcessingFilter (I don't define it in my hivemodule.xml, but it would

Re: Re: tapestry-acegi questions

2006-10-29 Thread Shing Hing Man
Step C at the following might help. http://wiki.javascud.org/display/hsa/Acegi+and+Tapestry--A+Step-by-Step+Guide shing --- Robin Ericsson [EMAIL PROTECTED] wrote: On 10/29/06, James Carman [EMAIL PROTECTED] wrote: Hi, Robin. I haven't implemented form-based authentication in tapestry

Re: tapestry-acegi anon svn

2006-10-01 Thread Robin Ericsson
On 9/20/06, Robin Ericsson [EMAIL PROTECTED] wrote: Hi, Couldn't find a specific list for tapestry-acegi so I post this here. I can't seem to access the anonymous svn repository. All I can find is that I should use anonymous/anon, but that doesn't seem to work. I just want to give notice

Re: tapestry-acegi form based login

2006-09-21 Thread Robin Ericsson
On 9/21/06, Jesper Zedlitz [EMAIL PROTECTED] wrote: Is it possible to use a html form for login with tapestry-acegi instead of HTTP basic authentication? I'd like to know that too. I would like to write a third part for my tutorial http://wiki.apache.org/tapestry/AcegiSpringJava5 about

RE: tapestry-acegi form based login

2006-09-21 Thread Jonathan Barker
My approach predates tapestry-acegi, but I'm sure it could be adapted. I use a bit of a hybrid approach, where the authentication part is handled as described in the EWDT e-book and all of my protected pages extend a BaseProtectedPage class. My Login page has a UserValidator ASO injected, which

Re: tapestry-acegi anon svn

2006-09-20 Thread Karthik N
I have the same issues with tapernate SVN. It's been more than a month but no luck!! :-( On 9/20/06, Robin Ericsson [EMAIL PROTECTED] wrote: Hi, Couldn't find a specific list for tapestry-acegi so I post this here. I can't seem to access the anonymous svn repository. All I can find

Re: Tapestry-acegi pom.xml

2006-09-05 Thread Patrick Moore
://jira.codehaus.org/browse/MINSTALL-33 -Pat --- Patrick Moore [EMAIL PROTECTED] wrote: Hi James -- I think you said when you get a chance you are going to update the tapestry-acegi package. When you do you might wish to use this pom.xml. I discovered this neat feature of maven2 that allows you

Specifying a map of values in Hivemind? (Tapestry-Acegi related)

2006-09-04 Thread Robert Cole
Hi all. I'm trying to pass a map of values into a Hivemind service and I'm hitting problems. I'm coming from Spring, so the Spring version looks like this: bean id=userDetailsService class=org.acegisecurity.userdetails.memory.InMemoryDaoImpl property name=userMap value

Re: Specifying a map of values in Hivemind? (Tapestry-Acegi related)

2006-09-04 Thread Robert Cole
? (Tapestry

Tapestry-acegi pom.xml

2006-09-04 Thread Patrick Moore
Hi James -- I think you said when you get a chance you are going to update the tapestry-acegi package. When you do you might wish to use this pom.xml. I discovered this neat feature of maven2 that allows you to specify the minimum version of a dependency. This allows users to upgrade

RE: Tapestry Acegi

2006-09-01 Thread Robert Cole
Thanks James. I'd seen the Tapestry Acegi site and it looks a little thin on the ground ;-) I'll have another go with the docs you've sent and I'll see how I go. Rob Cole CSA Web +44 (0)20 754 51117

RE: Tapestry Acegi

2006-09-01 Thread Robert Cole
, the total security, inclusive admin tool, was ready. -Original Message- From:Robert Cole [mailto:[EMAIL PROTECTED] Sent:Thu 8/31/2006 6:53 PM To: users@tapestry.apache.org Cc: Subject: Tapestry Acegi Has anyone used the Tapestry-Acegi project? I'm

RE: Tapestry Acegi

2006-09-01 Thread Robert Cole
Hi James, I've managed to get Acegi up and running with our own custom filter but when I put the Tapestry Acegi jar into my build I get errors about various beans not being present. Is there any documentation on what Spring beans TA depends on? Also, looking at the hivemodule, most

RE: Tapestry Acegi

2006-09-01 Thread James Carman
Tapestry-Acegi doesn't use Spring at all. Can you send me the error messages? You need hivemind-acegi.jar in your classpath. -Original Message- From: Robert Cole [mailto:[EMAIL PROTECTED] Sent: Friday, September 01, 2006 9:53 AM To: Tapestry users Cc: 'Tapestry users' Subject: RE

RE: Tapestry Acegi

2006-09-01 Thread Robert Cole
there I could write a how-to for you to use on the tapestry-acegi site detailing what I did along with some concrete examples? Rob Cole CSA Web +44 (0)20 754 51117

Tapestry Acegi

2006-08-31 Thread Robert Cole
Has anyone used the Tapestry-Acegi project? I'm about to implement some role based security on our project and we're looking at this as its linked on the Tapestry home page. Unfortunately there's no doc and the builds don't appear to work as when I tried one (the latest one from June some time

RE: Tapestry Acegi

2006-08-31 Thread James Carman
Yes, we use Tapestry-Acegi at work and it works just fine for us. You have to make sure you get all of the dependencies. A lot of the work is done by the hivemind-acegi module (also available at JavaForge) and the hivemind-acegi-dao module (if you want to use it). -Original Message

RE: Tapestry Acegi

2006-08-31 Thread James Carman
Oh, as for the @Secured annotation not being present, you have to add the acegi-security-tiger.jar file (tiger = JDK5) to your classpath. Tapestry-Acegi uses the built-in @Secured annotation available from Acegi to secure page classes and listener methods. For the build to work, you will have

RE: Tapestry Acegi

2006-08-31 Thread Jasper Huzen
Cole [mailto:[EMAIL PROTECTED] Sent: Thu 8/31/2006 6:53 PM To: users@tapestry.apache.org Cc: Subject:Tapestry Acegi Has anyone used the Tapestry-Acegi project? I'm about to implement some role based security on our project and we're looking at this as its linked on the Tapestry

Re: Tapestry + Acegi + Spring integration

2006-07-12 Thread Gernot Stocker
On Tuesday 11 July 2006 20:30, James Carman wrote: Yeah, when I added tapestry-acegi support into our project at work, the people were quite amazed at how easy it was to secure a page. Hi, I would like to use the tapestry-acegi project for ACEGI-security-checks in pages, having already

RE: Tapestry + Acegi + Spring integration

2006-07-12 Thread James Carman
The tapestry-acegi module allows you to use the Acegi servlet filters as ServletRequestServicerFilters. So, you can just add a javax.servlet.Filter to the pipeline and it will automatically wrap it to adapt it to the proper interface. Since the filterChainProxy implements javax.servlet.Filter, I

RE: Tapestry + Acegi + Spring integration

2006-07-12 Thread James Carman
, July 12, 2006 8:58 AM To: users@tapestry.apache.org Subject: RE: Tapestry + Acegi + Spring integration -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 James Carman wrote: What did you mean by How do I change the name used for HTTP basic authentication? on the Wiki? Ok, realm name is more percise

  1   2   >