Hi Costin,
Thanks for the news of the release. Just wanted to note that the landing page for Spring OSGi still seems to be listing 1.2.0 as the latest stable release.
...
Type: Posts; User: magicduncan; Keyword(s):
Hi Costin,
Thanks for the news of the release. Just wanted to note that the landing page for Spring OSGi still seems to be listing 1.2.0 as the latest stable release.
...
Sorry digz, no answer for me.
So it looks like this has been logged in Jira.
Reading the response from Ben, I get the impression the whole ACL side was designed to meet someone's highly specific and complex requierments. If...
Im not sure about loading this post authentication, but there is the ability to supply your own sql to query this information.
One useful place to look for example might be the Appfuse project...
Hi Tim,
I cant answer your questions, but I would be interested in the result if you do build a HibernateAclServiceImpl. I was suprised not to see this, so figured there must have been a...
Ok, I think SpringSecurity has a filter for doing this, as discussed here, but I dont know if this can be used without Spring Security also managing other aspects of your application - specifically...
Is your application already Spring based? Ie does it load up resources using an ApplicationContext already?
If so, you may already be loading your existing spring beans through the...
Do you have an idea what the interface to your Security Module will look like?
Its just showing you the query that it used. The ? is the where your username would get substituted.
Is there any kind of stacktrace in your log? It could be that there is an SQL error of some...
How are you looking to deploy it?
Im running on JBoss and it loads through a webapp without any JBoss specifics involved. Just another entry in the web.xml's context-param.
Ben,
Is your advice to avoid using Groups still applicable since the implementation of http://jira.springframework.org/browse/SEC-272?
Cheers
Hi John,
Ive seen your posts all over this forum, and on the densksoft blog, and supsect you have gone through a similar pain to what I am experiencing with Spring Security ACL.
Ive had issues,...
Came across some other (quite old) references to this line of code in the forum
http://forum.springframework.org/showthread.php?p=139749#post139749
This is so old I dont know if it still...
Actually this doesnt seem to be a great way to do it? By using GrantedAuthoritySid, I basically then need create and grant different Authoritys for each of the secured domain objects that I am trying...
Well, after a little further digging around, I realise that GrantedAuthoritySid allows me to do something like this. I cant say Ive quite grokked this all yet, but if I create an entry in the ACL_SID...
Hello there,
I am trying to understand what support the ACL side of Spring Security 2 has for Groups. When configuring Users and Authorities, it is possible to add users into Groups, and grant...
Hello there.
I have been struggling for some time to get to grips with the ACL side of Spring Security 2.
I am currently trying to understand the mask value on AclEntry.
Firstly, I have...
I guess following the above approach, Id need to rollout my own LookupStrategy as well huh? Would it be fair to say that changing the names in the ACL schema is not recommneded?
Hi all,
I am currently using the JdbcMutableSqlService implementation, but I run into problems because the table names do not conform to local coporate naming conventions. Ideally I would like to...
Im pretty new to this, so I could be entirely wrong, but I think when you EL gets parsed, it is looking for a property on dmService (MyAction class) called progress instead of a method. I suspect...
Im not sure this is a perfect match for your question, but I had a case where I had an option for the user to return to an earlier point in the flow, in which case a subset of the model needed to be...
Hi all,
I have a simple flow which takes the following form:
search form -> result list -> view item
On my 'result list' page I have a listing of all search results, and I want to be able to...
Hi there,
Thanks for your response.
My only concern with this approach is that it is using the File API to locate a resource that is presumably located later by ClassPathXmlAppContext from the...
Hello there,
I most frequently use ClassPathXmlApplicationContext as a means to gain access to my bean factory, and was looking for a way of programatically providing a fallback configuration if...