Tagged Questions
0
votes
1answer
22 views
Spring Security Without Role-Base Using Database
I want to implement Spring Security(Authentication and Authorisation) I Google about it and any MKYoung Spring Security Example, I Just want to distinguish URLs between authenticated user and ...
1
vote
0answers
112 views
javax.naming.AuthenticationException: [LDAP: error code 49 - Invalid Credentials] while authenticating via LDAP in spring security3
I am trying to authenticating user via LDAP and authorizing via Database.LDAP directory contains user with corresponding group and I want to fetch this group at the time of successful authentication ...
0
votes
2answers
118 views
An Authentication object was not found in the SecurityContext
I have an application exporting web services, with a configured Spring Security SecurityFilterChain (with SecurityContextPersistenceFilter among others, which is required for the rest).
My ...
0
votes
1answer
62 views
When trying to unit-test authorizations with@PreAuthorize I get “No AuthenticationProvider found for UsernamePasswordAuthenticationToken”
First: my question seems like No AuthenticationProvider found for UsernamePasswordAuthenticationToken, but implementing the solution found there doesn't help me any further.
My app-context looks like ...
1
vote
0answers
72 views
Dynamic Authentication and Authorization Mechanism
I am developing a web application consisting of different domains. I have tried to implement hierarchical RBAC for authorization. Each domain has some predefined operations in their bo ...
1
vote
0answers
169 views
Spring Security 3 Custom Authorization
I am using Spring Security 3 for Authorization. By default if user does not mention any pattern in intercept url tag then Spring does not restrict that user from accessing that url. I want to restrict ...
0
votes
0answers
312 views
Authentication using custom AbstractAuthenticationProcessingFilter and custom CustomAuthenticationProvider is not working propertly
We are using spring security to authenticate the user based on some user details (like userid ) coming from external application and perform authorization using the security context holder. We are ...
2
votes
0answers
135 views
Adding Spring Security @Secured annotation with the Spring Web Service disables Web Service endpoint
Problem: When I add @Secured annotation at a web service method, the endpoint is disabled means I get No endpoint mapping found error when invoking the ws endpoint.
Background: My Spring Web Service ...
1
vote
1answer
40 views
how can I authorize subsystems to specific users?
I'm using SpringMVC, SpringSecurity, Spring, Mybatis for my web application. There are a lot of parallel subsystems(say, different registration system), What I wanna implement is to give each ...
0
votes
1answer
686 views
Spring Security - UserDetailsService implementation - Login Fails
I'm quite new to spring and i'having this issue with spring security.
Actually it only works without my custom UserDetailsService implementation.
Account and Role Objects
@Entity
...
0
votes
1answer
141 views
difference between user schema and acl schema in spring security?
In this article, 3 schema about spring security implementation are introduced. I want to know the differences between user schema and acl schema, which one is better to use, or in other words, I want ...
0
votes
1answer
214 views
Authorization and Authentication using Jersey and Spring
I'm writing a RESTfull service using jersey and Spring 3 (including spring-security), and trying to figure out how to implement authentication and authorization.
I'm new both to jersey and to Spring ...
0
votes
0answers
149 views
spring security authorization intercept url
I am using spring security and I have set the
<s:intercept-url pattern=XXX access="Role_name"/>
in applicationContext-security.xml file for a special user. for example:
when I login with ...
0
votes
1answer
98 views
Spring Security 3.1 Authorization
I want to use spring security in my existing web application.Currently I can authenticate the user. But I can not to do authorization. The application gives 403 -error. What am I missing? please help ...
0
votes
1answer
923 views
Spring Security taglib sec:authorize with role hierarchy not working
I can't get sec:authorize hasRole() to work with the role hierarchy. If I have a user with role ROLE_BOSS which is the parent of ROLE_WORKER, then is false for some reason. In my service classes ...
0
votes
2answers
244 views
Grails Spring-Security: Grant authority under controller
I'm new to grails. I usually grant authority to a user in bootstrap.groovy which looks like this:
def roleAdmin = Role.findByAuthority('ROLE_ADMIN') ?: new Role(authority: ...
1
vote
1answer
178 views
Spring security authrorize based on input parameter criteria
I have a scenario where I need to authorize user based on combination of his permission and input parameter passed.
this is the current scenario
public void bookTicket(String bookingType)
{
...
1
vote
0answers
467 views
Spring Framework role based method security not working in Apache CXF webservice
I have a simple Apache CXF webservice with the following beans.xml file:
<?xml version="1.0" encoding="UTF-8"?>
<beans:beans
xmlns:beans="http://www.springframework.org/schema/beans"
...
1
vote
1answer
83 views
Namespace or URI based spring security
I need to implement authorization based on namespace of the URI.
For example, localhost:8080/common/* would be accessible to all kind of users and
localhost:8080/admin/* would be accessible to only ...
0
votes
1answer
84 views
How can i create a secured and an unsecured version of a method-security protected DAO
In my current project we have a set of service classes that are secured by method-based security.
now in some cases the "system" needs to call secured methods on its own. (for example: a user leaves ...
3
votes
3answers
442 views
Java – efficient, database-aware instance-level authorization?
In a JPA app I have a scenario in which the app is to
list all accounts the given user is authorized to withdraw from
I have the Account entity and a many-to-many table that lists what ...
3
votes
1answer
272 views
Spring Security Using X.509 Authentication and Periodically Updating Authorization UserDetails
I used Spring and Apache CXF to create a REST webservices application. I'm using x.509 certificates to authenticate the users, and then a custom authorization service to get all of the user groups ...
1
vote
1answer
334 views
two-level authentication with Spring Security
Background
Our site allows someone to login using their registered email and password. Now we want to allow users to register using only their Facebook identity (as an alternative authentication ...
1
vote
2answers
920 views
java.security.Principal - creation in HttpServletRequest and Spring Security
I am unable to find how the java.security.Principal in HttpServletRequest is created - who is responsible? How it is done? Is it necessarily kept in Session?
How it is connected to Spring Security?
...
2
votes
2answers
1k views
Spring Security+JSF ROLE-driven rendering of page components(link etc.) best practice
Usign JSF+Spring Security.
Solution 1 - UI oriented:
JSF page displays panel with users if authenticated person has ROLE_ADMIN authority only.
<p:panel ...
0
votes
1answer
1k views
determine target url based on roles for struts2
I am new to struts and spring security.
Can anyone help me to figure out how to redirect to different urls different users with different roles ? In other words, how to provide determine target url ...
2
votes
1answer
430 views
Spring security blocking all requests
I'm in the process of trying to setup database user authentication with Spring 3.
Now using the Spring included login form thing:
<form action="<c:url value="/j_spring_security_check" />" ...
1
vote
1answer
233 views
Role-based access denial handling in Spring Security - how to?
I'm working on Spring based application with Spring Security. I have users with different roles and would like to implement access denial handling depending on the role. More specifically the desired ...
3
votes
1answer
191 views
Spring Security - how can I ask invoke access control methods directly?
There's a lot of documentation on how to use jsp tags, aop, annotations, the application context, and all of these sorts of things... but how do I access the access control methods directly? What ...
1
vote
1answer
549 views
Spring role-based authorization VS ACL?
i just want to know the difference between using ACL and spring role-based authorization in spring security 3 ?
2
votes
1answer
188 views
Java Desktop Application and Functionality Autherization
I'm fairly new to java development and I have found myself tasked with implementing a functionality authorization system for a desktop application written in java.
Currently the application requires ...
3
votes
1answer
84 views
Basic than the Basic-est question on Spring Security?
I have an extremely basic question about Spring security, however this question may be generalized to any Authorization scheme:
Should a Group have a single authority and a user may be a member of ...
0
votes
2answers
221 views
Implementing A Controller for Authorization
I use Spring and Spring Security 3 at my application. All my clients side are static HTML files. I have a navigation bar that includes buttons like:
List
Edit
Delete
Update
When a user clicks any ...
2
votes
1answer
128 views
adding new role to already authenticated user (without logging him out)
I'm using Spring Security, and in some cases after logging in user can make some actions which should gave him access to some resources, so ideally it should be done via giving this user a new role. ...
5
votes
3answers
7k views
How to dynamically decide <intercept-url> access attribute value in Spring Security?
In Spring Security we use the intercept-url tag to define the access for URLs as below:
<intercept-url pattern="/**" access="ROLE_ADMIN" />
<intercept-url pattern="/student" ...
0
votes
2answers
403 views
How do Spring's security annotations on methods work?
Consider this code:
import java.util.Collections;
import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.security.core.userdetails.User;
public class ...
1
vote
2answers
163 views
Authorization for objects in Java EE
My web application requires access control to the content that is displayed to users. All users may be accessing the same page but the content shown will depend on their access rights.
For example, ...
8
votes
2answers
9k views
How to get current user role with spring security plugin?
I am using the spring-security-core plugin in my grails app. I need to know the current user's role in a controller action. How can I retrieve that?
0
votes
1answer
957 views
why sec:authorize doesn't work?
I have a JSF 2 page based on Facelets and use Spring Security 3 behind the application. When I put some tags like this within my page:
<sec:authorize access="hasRole('SS')" >
<h:outputText ...
2
votes
2answers
124 views
Should admin account be in the same user class as a customer?
I learn Grails and Spring Security plugin.
I don't know how to design sample web application with two layers: customer can view product and categories and order a product (if he/she is registered and ...
0
votes
1answer
974 views
Using InMemoryDaoImpl in spring security
I am trying to implement custom filter , authentication provider to authenticate users directly from requests . However I am getting the following the exception .
...
0
votes
1answer
1k views
Defining Spring Security user roles
I am going to design an application which authenticates user from another application . Basically my application is going to get only if the user is authenticated (true or false) and the user role .
...
0
votes
1answer
81 views
Securing User Centric Resources (e.g. their images)
I need to secure user resource files (like their video/images etc) using Spring security so that only the user who uploaded these can have access to them.
Thinking of scalability would it be better ...
1
vote
2answers
793 views
Spring Security - DB Authorization with a default authority?
In Spring security 3 - can I declaratively define a default authority to be assigned to all authenticated users that are authenticated using the jdbc authentication provider? Currently my webapp does ...
0
votes
1answer
777 views
How do I Programmatically test autorization for URLs in Spring Security?
I'm using Spring security 3.0.5 in a JSF 2 application.
In order to deactivate/hide entries in my navigation menu for users that are not permitted to access them, I need a way to programmatically ...
0
votes
2answers
1k views
How do I get permitAll in Spring Security to NOT throw AuthenticationCredentialsNotFoundException in @Controller object?
I have a controller that has many actions and it specifies a default class-level @PreAuthorize annotation, but one of the actions I want to let anyone in (the "show" action).
...
0
votes
1answer
355 views
Spring authorization
I have some problems with authorization. So, my app has login.jsp page. web.xml file has this lines:
<welcome-file-list>
<welcome-file>login.jsp</welcome-file>
...
0
votes
1answer
371 views
spring authorization
I have some problems with authorization. I don't want to use Spring Security, just simple authorization form (with two fields: UserName, Password and submit button). Then user can work with ...
0
votes
0answers
99 views
authorization stringtemplate
it doesn`t working
web.xml
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<context-param>
...
1
vote
1answer
423 views
How to set up Spring security to authenticate signed requests?
Does spring support authentication of signed requests? (like those provided by open social Signed authorization ,i.e open social makeRequest API)
if so, how do you configure it?
Best Regards
Yaniv
