Well, there's the rub.
It seems no matter what *actual* exception happens, the SPRING_SECURITY_LAST_EXCEPTION = org.springframework.security.ui.openid.OpenIDAuthenticationRequiredException: External...
Type: Posts; User: jdoklovic; Keyword(s):
Well, there's the rub.
It seems no matter what *actual* exception happens, the SPRING_SECURITY_LAST_EXCEPTION = org.springframework.security.ui.openid.OpenIDAuthenticationRequiredException: External...
Hi,
I've implemented an app that uses openID exclusively for login.
Everything is "working", however I can't figure out how to trap errors and return something useful to the view.
For example,...
JPA, Hibernate, MVC null or transient error
Hi,
I have an app using spring 2.5.4 with annotations that includes an object that has a many-to-one relationship.
Basically there is a client...
can you add an updated link Ben?
the one above does not work anymore.
Thanks!
Unforunately I've been pulled off of this stuff lately. (had to do "real" work)
But I'm getting ready to dig back in again.
I'll post any progress here. And again, any help with the AOP proxy...
Figured it out.
I just made a stupid mistake....
forgot to list the Anonymous provider in the list for the auth manager
Hi.
I'm trying to get basic web authentication in place, but everytime I hit the app, (any page, secure or not) I get a browser error stating:
"Redirection limit for this URL exceeded".
I'm...
I'm having the same problem, only my context files are NOT in jars.
OK,
I've found a little more info...
Apparently, if you deploy a war file using ant and you have unpackWars="true" in your server.xml, everything will deploy fine, but the undeploy breaks.
the...
Hi.
I'm using tomcat 5.5.4
When i deploy my war, everything works fine (using ant/tomcat deployer)
But if i make a change and then undeploy/redeploy and/or reload the app. the ContextListener...
Thanks.
I was thinking you could probably write a HibernateAuthenticationProxyFactory to replace the ProxyFactoryBean class that would know how to add the advisor with the mixin so you wouldn't have...
thanks.
that makes some more sense.
Just looked at the source for DaoAuthenticationProvider and UsernamePasswordAuthenticationToken...
Basically it looks like on a successful auth, the DaoAuthenticationProvider is simply returning a...
hmmm, without actual examples, it's kind of hard to follow.... i already have a baseDao impl that supplies the persisting functions for all of my objects.
The problem is the lack of reusable...
I'm trying to use a mixin that inherits from DelegatingIntroductionInterceptor and is instantiated by a DefaultIntroductionAdvisor.
The problem is that the mixin object needs to have a property set...
Well, I want to use spring + hibernate + acegi for multiple projects.
These projects may have different dao setups and different principal objects.
Currently in spring itself and all the examples...
Ok, so I've been working on a HibernateAuthenticationDao using both the JdbcDaoImpl and the EmployeeDao from hispacta as a "guide".
What I've noticed is that the JdbcDaoImpl returns a pre-determined...
Thanks.
I believe my code above is on the business level, having the target of my TransactionProxyFactoryBean being the DefaultForumManager class (a service object) that simply uses my dao,...
Thanks, the new files worked.
odd thing is, i still get the error in the mysql error log about the communication failure, but the row is inserted now.
I'm using InnoDB and the connector/J:...
Hi.
I'm trying to get some really simple code working that just saves an object to the database.
I've got all the code wired up, and when i run my unit test that should create and save an object...
Hi.
I'm new to acegi. I've read the reference guide, and I'm now plowing through the contacts sample in hopes of figuring out how to get basic security (with some ACL rules in the future) setup....
here's a pretty version you can just copy and save to a file.....
DROP TABLE IF EXISTS contacts;
DROP TABLE IF EXISTS authorities;
DROP TABLE IF EXISTS users;
DROP TABLE IF EXISTS...
I've read a lot of posts here, the pro spring book, the examples on activeMQ, etc, but I'm still having problems putting everything together....
can anyone send me a *complete* simple example of...