I'm writing a report on an application which uses Spring security 2.0
and I was wondering if a diagrams in this link explaining the filters is correct?
...
Type: Posts; User: sousuke; Keyword(s):
I'm writing a report on an application which uses Spring security 2.0
and I was wondering if a diagrams in this link explaining the filters is correct?
...
Hi I've got a web application with my university which uses Spring Security but the problem is that requests all have to be HTTPS because there's a proxy with only a HTTPS listener which intercepts...
Hey,
I'm using a combination of Spring Security and Restlet and SSL is
performed at an earlier stage before the requests are proxied into
a virtual machine where my application resided on...
Hi Luke/Ben, I'm doing a thesis project in which I'm customising my own classes based on the ones you have implemented such as the AuthenticationProvider, AuthenticationProcessingFilter and...
Hey, I've been reading the spring reference manual about this but I'm still not too sure what to do to configure my application to prevent a user from logging in multiple times.
I've customised my...
Hey I've been reading the Spring Security reference manual on
Concurrent Session control and I followed the instructions and added
<listener>
<listener-class>...
Hey, I'm implementing my own token but after looking
at the UsernamePasswordAuthenticationToken as a guide I was wondering what was the purpose of the variable
private static final long...
hi I've got a web application which works with the username and password authentication and the spring security filter chain is invoked in my login form like that.
<form name="f"...
Hi Luke, thanks for your reply. I've got this working now, I decided to keep the configuration syntax in Spring 2.0.x because the project I'm working on has all been written using this. The class...
hey,
I've been trying add my own provider to authenticationManager but I'm getting quite a few problems and I've tried different configurations too.
Background info of my security-context.xml...
I'm not sure what it means to prefix elements with "security:" does this do something special? The application-security.xml file I'm looking at uses a lot of these "security:" prefixes for the...
Hi, I was just looking at the source code of DaoAuthenticationProvider,
Could someone please tell me what this variable does?
private boolean includeDetailsObject = true;
I haven't been able...
Hey, I've customised a few of my own classes which implement the Spring classes
I've got:
myAuthenticationProcessingFilter
which implements AuthenticationProcessingFilter
...
hey, thanks for that but is it possible to have both username and password authentication as well as pre-authentication, and if it is possible how does one go about configuring the two in the...
after further reading I found that this dodgy attempt will not work because it will try and authenticate against my customised UserDetails service and fail
authRequest = new...
Hey, I'm trying to customize AuthenticationProcessingFilter and I just
have a few questions about it. Could someone please tell me about what setDetails() is used for and also how authRequest is...
Hi, thanks for the code, seems that you've shown me how to register the two different authentication providers with their corresponding daoauthenticationProviders for the two different logins.
...
Hey, I've currently got a web application using Spring Security with a working form based authentication and an application-security.xml configured. I want to allow a user who's authenticated by an...
Hey, I was wondering if it was possible to populate a username by extracting it from the http request headers? I've currently got a custom implementation of userDetailsService and I have a simple...
Hey, I've been trying to modify an existing java based web project which has Spring security authentication already applied and working. The current form
has
<form name="f"...
Hey, thanks for you help, I've been busy lately and only just had a look at your reply. Could you please attach your JDBC.properties file or paste the contents so I can see how you've set this up for...
Hey, I would like to use spring security with a web application using Hibernate and a MySQL database containing authorisation of the users. Does anyone know a good step by step Tutorials which...
hey, thanks for that link. I've given up looking at that Impala Version of Pet Clinic because I can't find much Impala documentation. I'm just trying to get the Pet Clinic version from Spring...
Hey, I read your reply but the Petclinic readme.txt says this:
"PetClinic features alternative DAO implementations and application
configurations for JDBC, Hibernate, and JPA, with HSQLDB and...
Hey, I've downloaded the pet clinic sample and I'm trying to get it to work
using Hibernate with MySQL database. The petclinic database has already been set up. The attached files show the ONLY...