I have properly configured a custom PermissionEvaluator. I noticed that when my PermissionEvaluator.hasPermission() evaluates to false, the user is presented with Apache Tomcat's generic HTTP Status...
Type: Posts; User: grossb; Keyword(s):
I have properly configured a custom PermissionEvaluator. I noticed that when my PermissionEvaluator.hasPermission() evaluates to false, the user is presented with Apache Tomcat's generic HTTP Status...
Thanks for you quick reply. As it turns out, I was adding my annotations to the class definition instead of the interface.
Is it possible to implement individual URL and method based security simultaneously? I'd like to set access="isAuthenticated()" within the <intercept-url> tag and then have more granular filtering...
Hi XPat,
After reading the previous post again, I realized simply adding the CoreOAuthSignatureMethodFactory bean def to an annotation-config-enable context file will autowire it to the filters.
...
Hi XPat,
I was wondering if you ever found a solution to this problem. I want to implement the same flow you have described above. All the solutions provided seem to relate to how the consumer...
I have a 2-Legged OAuth related question that I thought I'd post to this thread as it has been the most helpful with regards to getting 2-Legged OAuth working using spring-security-oauth. What I'm...
After more thought, I decided I was complicating the issue by introducing JdbcDaoImpl. I ended up reverting the applicationContext-security.xml to its original state and making modifications to the...
I want to store pre-registered users in a backend database rather than the application context file. I'm using the applicationContext-security.xml file that came with the openid sample application. ...
Thanks for you rapid reply Luke. Between the time I made my post and now I learned about org.springframework.security.core.userdetails.jdbc.JdbcDaoImpl. I'm going to use this instead of...
I apologize in advance if this question has already been asked, but I could not find anything after my initial searching.
I've successfully integrated OpenID support into my application using...