Tagged Questions
0
votes
0answers
6 views
How to use seperate realms for authentication and authorization with Shiro and CAS?
I'm working on a web application where multiple applications authenticates through a CAS SSO Server. Howerver, each application should maintain their respective roles and these roles are stored in a ...
0
votes
1answer
17 views
Hide the exception [Invalid property 'principal.username'] and show a simple message instead
By using Spring security,When i leave my application web opened for a while then the authentification is lost and the user must login again so when i click on a button or a link in my application to ...
0
votes
0answers
35 views
Spring Security Plugin Authentication Failure Issue
I installed Spring Security Core plugin which provided me a login controller. I then created a user in the BootStrap.groovy
def init = { servletContext ->
if (User.count() == 0) {
def ...
0
votes
0answers
27 views
Spring current session - how to get a user id
I would like to get the id of the currently logged in user and use it to access their specific user page.
To implement that I have been able to get the current logged in user's name using:
...
0
votes
0answers
15 views
Spring security Custom userdetails not working
I'm attempting to customise the userdetails, and with an assembler and register it in the security xml.
@Service("customUserDetailsService")
public class CustomUserDetailsService implements ...
0
votes
0answers
27 views
Spring security database authentication issue
I'm trying to authenticate a user with saved username and password
I've tried two ways with only one working and I would like to know why the other is not working.
My models - UserEntity
public ...
0
votes
1answer
17 views
update XML file in a page Jsp
I use spring security and i have many roles in my database for example ROLE_ADMIN and ROLE_USER so in my xml file named "spring-security.xml" i defin for each page wich role can see it :
<http ...
0
votes
1answer
19 views
Change data source dynamically on user login
I have a project that has the following requeriments:
Allow users to login in the same Web Application using different schemas following a criteria;
Dynamically route the datasource against a rule - ...
1
vote
1answer
39 views
Build a website: should I use a number or random unique string as ID in URLs?
Hi I am building an Internet website with Java and Spring framework. I believe my question is not technology or framework related.
I need to have links in user interface so that visitors can click ...
0
votes
1answer
31 views
integrate spring security 3.1 with existing app
I want to integrate spring security in my application.
The users'information is saved in an Oracle DB where the passwords are encoded with md5.
I tried this at first but it didn't work :
<bean ...
-2
votes
0answers
9 views
Spring security Ldap authorizationMapper
How and what to inject the parameter mapAuthorities(Collection grantedAuthority) method on run time
0
votes
3answers
84 views
Spring Security | Method level security with @Secured/@PreAuthorize
I've been trying out 'Method Level' security on this application I've been working on. The idea is to secure a method which gets called from the presentation layer using DWR.
Now, I've tried adding ...
0
votes
0answers
39 views
grails,Spring Security Core,QQ(just like facebook)login
I am new to grails and spring security plugin core and I have been in trouble recently.Hope someone can help me ......
My login page has a login form. Now, I want to add a shortcut to login. Click the ...
0
votes
0answers
35 views
Spring Security: <sec:authorize> tag does work for authenticated user
I'm using the spring security <sec:authorize ifAllGranted="ROLE_USER" > tag to evaluate if a user is logged in (authorized as ROLE_USER). I have the following intercept-url defined:
...
0
votes
1answer
28 views
Spring Security Authorization - Admin is denied access
The authorization for the role admin is being denied access to the whole system - the admin and home pages. So I added ROLE_ADMIN to the /main/home intercept-url.
This is the security xml
<http ...
2
votes
1answer
37 views
spring security with velocity?
i have an application where the pages are not in jsp but velocity, and it isn't running with spring either... i want to integrate spring security to it, but i couldn't find any documentation... i ...
0
votes
1answer
34 views
using a login page for spring security
i am a beginner with spring security. i wanted to try using a login.jsp to authenticate. the login page is showed, but when i authenticate, it doesn't go to the default-target-url. here is my code:
...
0
votes
1answer
27 views
Spring authentication - getting the logged in name
I have been able to authenticate a user and can get their logged in username to show on their page. But instead of the username I would like to use the name of the user.
The assembler for this:
...
0
votes
0answers
25 views
Toggle on/off basic auth in spring
I am working on a spring webapp that has basic auth (backed by dao) built into it using Spring Security. I am looking to a way to toggle on/off the basic auth programatically, may be via a admin level ...
0
votes
1answer
31 views
Spring Security hasIpAddress issue
I have a method in a controller using the below configuration:
@RequestMapping(value = "/encore/{userName}/{token}", method = RequestMethod.GET)
@ResponseBody
...
0
votes
1answer
36 views
Grails Spring security for different form of authentication
I am currently using the grails and Spring security to implement the authenitcation. Not doing much customization , using the out of the box
and everything works fine for a user who lands into the ...
0
votes
1answer
45 views
Spring Security 3.0: Method Security being ignored
I'm new to Spring Security and I'm having trouble getting Spring Method Security to work in my web application although (I believe) I've setup the web.xml, applicationContext.xml and ...
0
votes
2answers
41 views
Spring security and special characters
I need to log in with j_spring_security_check using special characters in the username and/or in the password via url
...
0
votes
1answer
47 views
Spring Security Database authentication
When I use an in memory xml username/password to autheticate it works, so the next stage for my project was to authenticate against a database. This is where I come up with persistent problems. It has ...
0
votes
0answers
69 views
Spring security authenticating error
I have an application which I have configured so I can use database to authenticate users.
Trying to login as either user or admin with the set up username and password gives this error:
HTTP ...
0
votes
0answers
32 views
How to get a password from Spring Security?
I use LDAP for authentication in my application.
(class=org.springframework.security.ldap.authentication.LdapAuthenticationProvider)
I need get a login and password inside app and I try this code:
...
0
votes
0answers
35 views
Spring Security 3.0 + CAS 3..3.5 - apply CASfilter on non-secure resource or home page
I am integration CAS(SSO) with Spring security web application.
I am facing one issue in it.
when user hit our web application we are displaying home page to the user.this home page url is /home.
on ...
0
votes
1answer
37 views
Only Allow Login With Spring Security For Users With Certain Roles
I have a login page where I want to permit everyone to access the login.jsp. For example,
<intercept-url pattern="/login.jsp" access="permitAll()" />
But I only want to allow access to users ...
1
vote
1answer
41 views
Intercept-url doesn't work
I have successfuly configured Spring Secure with Maven,
but my filter doesn't work.
Spring lets everyone in. I want to disable user-profile subpage.
The filter doesn't redirect to login page when ...
1
vote
1answer
159 views
Securing GWT servlets with Spring Security
I'm writing a GWT application secured with Spring security. Logging in works fine, but authorization doesn't.
I've tried using @Secured and @PreAuthorize annotations on my methods and that didn't ...
1
vote
0answers
52 views
Spring Security XML can't find tag with error cvc-complex-type.2.4.c
I have a problem with Spring Security.
Eclipse can't find the html tag in the spring-security.xml with this error :
Caused by: org.xml.sax.SAXParseException; lineNumber: 12; columnNumber: 28; ...
0
votes
0answers
46 views
Spring Webflow: logout
I am using Webflow 2.3.0.RELEASE and Spring 3.1.2.RELEASE with Spring security and Freemarker.
It all works well except that when I logout the session is not destroyed.
e.g. when I click the logout ...
0
votes
0answers
95 views
Spring Security multiple roles
I'm beginner on Spring/Hibernate and I need help. I want to create users with multiple roles.
I created Account entity:
@SuppressWarnings("serial")
@Entity
@Table(name = "account")
@NamedQuery(name ...
0
votes
2answers
116 views
Prevent redirect to login for Spring Security
I have Spring MVC + Spring Security project.
<http auto-config="true" access-denied-page="/security/accessDenied" use-expressions="true" disable-url-rewriting="true">
...
<intercept-url ...
0
votes
0answers
34 views
PreAuthenticatedCredentialsNotFoundException Issue: filters=none failing for parametrized URL
In our application, users are authenticated by an external resource that is Site Minder. To implement this, We have used Spring Security.
There are few Public urls that do not require to be ...
2
votes
1answer
75 views
Spring - Java EE User still null after authentication
I'm new to Java EE / Spring and I've been fighting with security for the past two days. I finally have to the point where I can authenticate with Java EE and authorize with Spring. Unfortunately, I ...
0
votes
1answer
81 views
spring security 3.0 restfull authentification for mobile client
We have an existing jsf/spring application that uses spring security for authentication and authorization.
Now we want to add a restful web service layer, to be used by a mobile client (native ...
-1
votes
3answers
63 views
How to secure communication in client-server app?
I've got backend running on the tomcat server and client running in the browser. Application is built on Spring 3 MVC + Spring security framework. How to secure the communication ? Is there other ...
0
votes
2answers
45 views
spring-security.xml declaration strange behaviour
So if i do this:
<servlet>
<servlet-name>spring</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
...
0
votes
1answer
58 views
manage session data for all users in spring 3.0
as the title says, i've got a spring mvc security implementation, works great, but i would like to manage the user log in inside the web application.
I would need to add session info like "client ip ...
-1
votes
1answer
73 views
Wicket spring security authentication without role
In my simple wicket app I need to give users access to only one subpage- and I need to get login / pass from db table. I do not need roles. I want to use spring security. I am totally lost making this ...
0
votes
1answer
60 views
Spring @Secured method is not working when called through a filter that uses a Flying Saucer (Itext) ReplacedElementFactory implementation
When I call a Spring @Secured method that is found on a @Service class, through a normal @Controller class, the authentication is working correctly.
When I call the same method through an IText PDF ...
0
votes
0answers
89 views
I use spring security custom filter when I log in always redirect to the error page
<xmlns:s="http://www.springframework.org/schema/security"
<s:http auto-config="true" use-expressions="true">
<s:form-login login-page="/login.action" ...
0
votes
1answer
114 views
Attribute jsessionid remove cookie
I logged in my site. Cookie created correctly.
I see JSESSIONID and SPRING_SECURITY_REMEMBER_ME_COOKIE (at this moment Its name is testMecook). It's ok
Then, I close my browser, then open it. And ...
0
votes
0answers
32 views
Spring Security 3 xml file
Please let me know what is the maximum size of Spring Security xml file with which I can run my application. Just wanted to know this because if an end user keeps on adding n number of intercept-url ...
2
votes
1answer
72 views
.NET - Security Frameworks for .NET
Does anyone know of any security frameworks for .NET?
By security framework, I am referring to a framework consisting of a set of libraries and APIs containing code which can be used to improve the ...
0
votes
1answer
190 views
Spring Security SAML extension with OPENAM
So here is the scenario.
I have my web app <==> IDP Proxy <==> IDP. Where both IDP proxy and IDP are openam instances.
The ideas is we may add our additional IDPs (From other clients) so we ...
1
vote
0answers
110 views
Securing REST endpoints with CXF in OSGI Karaf
What is the standard approach in securing REST endpoints implemented with CXF in OSGI?
The system in question is a web application deployed as a WAB in Karaf. The application contains JavaScript ...
0
votes
1answer
131 views
Spring Security Login Failure
I am using Spring Security 3.0.6 with JSF Mojarra 2.1.18 and Primefaces 3.5.
I created a LoginManagedBean which injects the AuthenticationManager of Spring Security.
@ManagedBean
...
0
votes
0answers
66 views
WARNING: Possible error: Filters are both instances of org.springframework.security.web.session.SessionManagementFilter
I'm developing a web application using Spring MVC and Spring security. Actually I do not have an error but a warning instead. It looks like this warning will come up with an error soon:)
When I try ...


