Spring Security (formerly known as Acegi Security) is the Spring Framework's application security solution. Spring security can be used to secure URLs and method invocations. It is widely used to secure standalone web applications, portlets and increasingly REST applications.

learn more… | top users | synonyms (1)

0
votes
2answers
16 views

Spring custom user details service null pointer exception

I've written a Spring MVC application with a custom user details service. @Service("userDetailsService") public class CustomUserDetailsService implements UserDetailsService{ @Autowired ...
0
votes
0answers
10 views

Can't access authentication-failure-url in Spring Security

I am creating a mobile application with JQuery and Spring security. In my Spring security context file I have the following piece of code: <intercept-url pattern="/mobile.html" ...
1
vote
1answer
18 views

How to have a custom cookie name in spring security

I have two applications A and B which are running on the same server, with different ports. As cookies are not port-specific, these two applications are using the same cookie JSESSIONID. When I log in ...
1
vote
0answers
19 views

Handling complex authorization in spring security

I have a spring MVC web app using pre- and post- authorization method annotations. I have a particular method in one of my services that needs to apply much more complex authorization logic. I ...
0
votes
0answers
9 views

Wss4jSecurityInterceptor giving exceception

I have developed one web service which is working fine with soup-ui but when when i am calling it with client it is giving me Null Pointer exception. If I remove security interceptor from both end it ...
0
votes
1answer
28 views

Grails spring-security static rules for rest resource seems not working properly

I have an Grails (2.0.4) application using Spring Security plugin (version 1.2.7.3) and the secured annotation approach (the default one, more here). Now, I have these URLs in UrlMapping.groovy with ...
0
votes
1answer
16 views

Spring Security ApplicationListener<AuthenticationSuccessEvent>

hi i've implemented an ApplicationListener<AuthenticationSuccessEvent> when this event occurs, i want to set a cookie to the ServletResponse. How can i access it? Should i use a Filter? But ...
1
vote
1answer
22 views

Spring security 3 http-basic authentication-success-handler

H i'm using spring security for form-login i have <http auto-config="true"> <intercept-url pattern="/pages/**" access="ROLE_USER" /> <form-login ...
0
votes
0answers
19 views

Why is Spring Security HTTP BASIC redirecting to wrong URL?

I have a simple Spring Security (3.x) configuration to require HTTP BASIC auth for a subset of resources in my application. <http auto-config="true" use-expressions="true"> ...
0
votes
1answer
22 views

parse memberOf attribute to get group in spring security3

I am using spring security 3.1.3 for authentication via LDAP, code is working fine.Now, I want to get group of authenticated user. I've developed my custom LdapAuthoritiesPopulator in my ...
0
votes
0answers
17 views

The app don´t work well with spring-security

I'm begging with the framework spring and spring-security. To learn, I´m developing an app. Up to now I have developped the app without spring-security, for validate to the user by way a login´s form. ...
0
votes
1answer
31 views

How can I do Spring Security authentication from within a JSF form

I created a simple JSF login page, and I'm trying to integrate it with spring security. Here is the form element from login.xhtml <h:form> <h:outputLabel value="User Id:" ...
0
votes
0answers
8 views

what are the changes from acegijsf to springsecurity for JSF 2.0

I am changing my application in order to use spring security and removing acegijsf I have changed as per this Spring Source Facelets Tag and Spring security I am using spring 3.0.5 version I am ...
0
votes
2answers
35 views

How to force spring-security to redirect unauthorized users to a specific page?

My application perfectly submits a form to server and shows the response message received from server such as "form is submitted" or "sorry, something went wrong!" However, I need to allow all users ...
1
vote
3answers
21 views

Is my approach to giving access to users correct?

I am applying spring security on my jsp page, I need to show different parts of the page to users with different roles all the roles are as following. All authenticated users >> Edit and Add New ...
1
vote
2answers
42 views

Spring MVC special login interceptor

I have this small web application, for which I am using Spring MVC 3.0 The way I have implemented the login functionality is via normal Handler Interceptor. i.e. when the request comes in the Session ...
1
vote
0answers
38 views

Grails - Spring Security - authentication error

I have a strange problem with an authentication of users in Grails using Spring Security plugin: When the user logs into his account, he sees credentials of completely different user (I print out ...
1
vote
3answers
73 views

How to use one transaction per request Spring + Hibernate + Spring Security + JSF

I'm working in a web app using JSF 2.1 + Hibernate 4.1.7 + Spring 3.2.1 + Spring Security + SQLServer2012. Everything works fine i.e. CRUD operations. But some methods need to work with 2 or more ...
0
votes
0answers
40 views

Invoking a protected method from a method in JSF managed bean which is annotated by @PostConstruct

In a JSF managed bean a method annotated with @PostConstruct - (javax.annotation.PostConstruct) is invoked as soon as the JSF managed bean is loaded i.e after the constructor of the managed bean ...
1
vote
2answers
43 views

Additional field in login using Grails Spring Security plugin

My question is similar to this one how to pass an additional parameter with spring security login page though it applies to Grails Spring Security plugin. If I have to support an additional field in ...
0
votes
0answers
18 views

Concurrency Control configurarion using Spring Security in Wicket 6.7.0

I followed the below example to integrated the spring security in wicket. https://github.com/thombergs/wicket-spring-security-example. I changed spring-security.xml file to configure the concurrency ...
1
vote
1answer
53 views

How to allow User to login only once at a time?

I have used Spring Security Core plugin in my grails application, and I want to add the functionality: When a user is already logged in, user will not be allowed to use same userName and password to ...
0
votes
2answers
34 views

how to block the unauthorized user using Spring Security?

I'm new to SpringSecurity. This my Spring-security-Context.xml file <?xml version="1.0" encoding="UTF-8"?> <beans:beans xmlns="http://www.springframework.org/schema/security" ...
1
vote
0answers
23 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 ...
2
votes
1answer
49 views

org.springframework.security.authentication.AuthenticationCredentialsNotFoundException: An Authentication object was not found in the SecurityContext

I have a web application in the following environment. Spring 3.2.2 Spring Security 3.2.0 JPA 2.0 JSF 2.1.9 I have added the following libraries related to Spring security to the classpath. ...
0
votes
2answers
23 views

Grails findAllByRole() error

I am trying to send email to all users with admin role when list() action has been called. Inside my list method I put the following code: def admins = User.findAllByRole("ROLE_ADMIN") ...
0
votes
0answers
18 views

Spring Security Remember Me Redirect after RequireFully Authorized

All, I am trying to implement Remember Me functionality I have two protected urls. /operation/fully (user must be fully authenticated no remember me allowed) and /operation/authenticated ...
0
votes
0answers
22 views

Spring security annotations work perfectly in the external Chrome browser but not in the integrated eclipse STS navigator

It is not a problem to continue coding, but I'm worry about the security. I don't know which could be the problem, or in which part could it be. This the whole code: ...
0
votes
1answer
21 views

Spring Security with LDAP and Database roles

In our new insurance project. I am trying to implement spring security with Ldap Active Directory. I want to just check username/password against AD, once user found in AD, I want to authorize him ...
0
votes
0answers
12 views

Spring-Security x509 X509PrincipalExtractor

I am trying to get a Spring security configuration working but am have some problems and I am not sure what to do. I have successfully used x509 with the following configuration <security:http ...
0
votes
1answer
34 views

Spring security 3 intercept-url pattern with index

I am trying to use Spring Security v3.2 for a project. At the moment I always use a coldfusion file that calls other files to build up the view. So all my urls go trough index.cfm?blablah. Now I am ...
0
votes
1answer
24 views

Spring Database Authentication Exception Handling?

I'm using Spring authentication against an Oracle database for temporary users. These users will be assigned a numeric ID that they can user to log into a limited web site. Everything is working ...
0
votes
1answer
41 views

Instructions needed to integrate spring-security-ui into my grails application

First things first, I have already started going through these URLs to install the spring-security-ui to my grails application. Spring Security UI Plugin and ... Customizing Grails Spring Security ...
0
votes
1answer
42 views

How to force Tomcat to delete expired Sessions when loggin User closes his Browser?

I implemented a SessionListener to track the open sessions of my webserver I set in my web.xml: <listener> <listener-class>demo.MyHttpSessionListener</listener-class> ...
2
votes
0answers
50 views

Spring security: External Authorization

I successfully completed login module of my application using spring security's inbuilt authentication & authorization mechanism.But later i was told to check if i can integrate WSO2 (SOA solution ...
3
votes
0answers
39 views

Igonre websocket connection in Spring Security SavedRequest

I have Grails application with spring-security-core plugin and Atmosphere framework. If I log out from page that have opened Websocket connection then spring security keeps url of WebSocket ...
-6
votes
0answers
28 views

I want to add two different URL to our single application [closed]

I want to add two different URL in my single application: Eg. For User /app/userlogin For Admin /app/admin/adminLogin Now i want to create two different war one with admin URL Only and other one ...
1
vote
0answers
23 views

How do I implement a custom UserDetails object when authenticating against Active Directory via LDAP in Spring Security?

As in my previous questions, I continue to wade through the murky waters of integrating Spring Security into an existing application, which must ultimately authenticate against Active Directory via ...
0
votes
0answers
27 views

Jdbc statement error

I have problem with such simple thing, sql statement, I have table in database that contains link in varchar(255), people are logged to site by links, so I'm taking logged person name (Getting ...
0
votes
0answers
19 views

How to use Spring OAuth2 redirect URI [duplicate]

how to correctly use a redirect-uri in a Spring OAuth2 client? I use the following config, which I took from the Tonr example, but it does not work. I get this exception: ...
1
vote
1answer
41 views

Do applications with spring security share SecurityContextHolder among them

I have two different applications, say A and . Both are using Spring Security with the same configuration. Here is my situation: I log into my A application. Everything works fine. But when I log ...
0
votes
1answer
15 views

Get User information in pages which are not part of any flow in Spring webflow

In my application i am using Spring Security, Spring Web Flow and JSF. I have defined flows and can extract user information using #{currentUser.name} in pages which are part of flow. But there are ...
0
votes
1answer
34 views

spring securit3.x y integration with wicket 6.7.0

I am new to wicket and SpringSecurity. I configured the spring security as follows. <http create-session="never" auto-config="true"> <remember-me /> <http-basic /> ...
0
votes
3answers
67 views

Autowire doesnt work in custom UserDetailsService

In my custom user details service, my variable "aUserService" doesnt auto wire even already annotated. tried a lot method, but still failed and the value is null. Acutally i follow from krams ...
0
votes
0answers
18 views

How to get all LDAP users with LdapTemplate

I'm using spring-security and wish to retrieve all users and all groups to be stored in a reference table so I can quickly look up users without having to consult the LDAP directory. I have created a ...
0
votes
1answer
37 views

Spring Security 3.1 LDAP Active Directory Issue

I am trying to setup LDAP with Active Directory and getting below error, I am new to spring security. I am using Spring core 3.2 and spring security 3.1, could some one help.... ...
0
votes
0answers
16 views

How does SessionRegistry update new Sessions when logged in with RememberMe Cookie in Grails?

When a user is logged in to a web site a new session is created. I use Spring Security to determine the number of users that are currently online, i.e., logged in and have active sessions. The code ...
0
votes
0answers
37 views

How to check User Online Status with Spring Security in Grails?

We use Grails Spring Security in our application to perform user authentication. If a user loggs in to our application, the rememberMe cookie will be saved. This means, that the user will remain ...
0
votes
1answer
26 views

Spring Security Rest DigestEntryPoint's key and realm

I'm following baeldung's Spring Security for REST guide, and he has you create a DigestAuthenticationEntryPoint. When you do that, he says you should set the RealmName and Key in that, and he gives ...
0
votes
3answers
105 views
+50

url context changing between local server and tomcat

Hi I'm working on a application that has a weird problem. The application works fine in both local tomcat and remote tomcat deployments, but on certain modules the url context changes. Here's one of ...

1 2 3 4 5 81