Cheers,
thanks Luke.
Type: Posts; User: Deakin; Keyword(s):
Cheers,
thanks Luke.
Hi,
This message is probably best answered by Luke, but any feedback would be appreciated.
I have SSL certificate authenticated web services. I get a fair amount of load on these services so I...
I got around to writing the filter and here it is. Almost everyone using a Hibernate backed UserDetails implementation and Acegi is going to have a similar problem so I figured I would post a pretty...
Hi Jeppe,
I am looking for a solution to the same problem. I need to reattach my "User" object to a Hibernate session so that I can use it properly. The trick is, as you have pointed out, to do...
Ok, after some more trawling, I have the answer - posted here for the future reference of others. It seems so simple now (but it always does right?).
This what you need:
<property...
Hi All,
This is a trivial question - I'm sorry to be asking it, but I can't seem to find an answer anywhere. It is probably more of a core container question, but it will be of most use to...
Isn't it always the way?
Just after you post a cry for help, you sort it out. It actually turned out to be very simple.
For the example in my post above, the field name for rejectValue is:
...
Hi all,
I am running into a situation that must be common with Spring MVC, but I can't seem to find any previous posts covering it.
I have a domain object that contains a map. I am using this...
Hi Nalin,
I have the exact same error. Did you ever sort out what was doing this?
Cheers,
Deakin
No probs.
I have tested it on Tomcat 5.5.4 (the only app server we use here) and with certificates generated by OpenSSL and keytool. I had no issues.
I had to write a custom populator to use...
Thanks for your reply,
Yep, that's what I thought. There is alwasys a handoff to the AuthenticationManager for authentication. I had a look at the code for AbstractSecurityInterceptor and found it...
Hi all,
I'm currently using a JAAS LoginModule to authenticate users and in the process of integrating it, I uncovered a little bit more of my ignorance (I hate it when that happens). I was under...
Luke,
I have run your code through some pretty tough testing and it seems to be holding up very well. Thanks for contributing the code, it works like a charm.
Cheers,
Deakin.
Thanks for the reply Ben,
I see your point about the multiple uses of configuration attributes. And I do admit that it is a small issue with little impact, but I was curious to see if I was...
Hi,
My suggestion would be to go with your usual association regime unless you can see a wider use for ACLs in other parts of your application.
ACL handling in Acegi is powerful, but it does...
Hi,
I have run into what seems a small limitation when implementing AfterInvocation support in my application. It is not a code bug, but rather a small design problem. The problem is that if you...
Thanks Luke, your reply is going to make this a lot quicker :)
I am comfy with dealing with OpenSSL and the like, so I'll get the implementation going and provide you with feedback as I go along....
Hi,
I have noticed that in the 0.8.1-SNAPSHOT hosted in Maven, some wonderful person named Luke Taylor has submitted a client certificate authentication implementation. I was just about to write...
Hi Ben,
Maybe this is too simplistic, but I think reworking the constructor ofAbstractBasicAclEntry would do it:
public AbstractBasicAclEntry() {
validPermissions =...
Hi Ben,
Thanks for the reply mate. I have figured out what is doing it. It has to do (again) with my hibernate implementation of BasicAclDao.
In your first code snippet, you show adding an...
Hi,
I am working with Acls within Acegi and have found some behaviour which seems odd and contrary to the documentation. It seems that to have an object inherit an acl from its parent you must...
Hi,
I am currently evaluating Acegi Security for integration into one of our projects. So far, the product looks very promising. The data access layer of this project is based on Hibernate...