Tagged Questions
1
vote
0answers
177 views
Cannot create a session after the response has been committed in IE7 and IE8
I am working with an application that allows the user to login using NTLM and a form login simultaneously. I mean that a user can log using their windows credentials (using jespa), but it is possible ...
0
votes
2answers
148 views
How does spring security work on a Servlet
I have a java that calls a Servlet:
public class UserServlet extends HttpServlet {
@Autowired
private UserService userService;
@Override
protected void service(final ...
1
vote
0answers
119 views
Access a controller before authentication Spring Security
I've been trying to implement a solution for multiple login pages. I currently have a unique LoginController, and all it does is to retrieve the login jsp when somebody request /app_name/login.htm. I ...
1
vote
1answer
161 views
Change servlet-mappings for Spring and Spring Security
I'm currently writing a Spring MVC application, secured by Spring Security. For the login a basic form authentication is used and since I didn't added further configuration the credentials are POSTed ...
0
votes
1answer
279 views
Resteasy spring security - duplicate requests
I'm having hard time to get RESTeasy working with my existing application. I can hit my end points (AdminService). My problem is everytime I make a GET request (over browser) I hit twice on my service ...
0
votes
2answers
356 views
Spring Security Filter Mapping - Disable on certain Url Pattern
I have the following servlet definitions:
<servlet>
<servlet-name>licenseGenService</servlet-name>
...
1
vote
1answer
375 views
i want to handle database connection exception using spring security
I am getting the following error:- Login error. Reason : Could not get JDBC Connection; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown database 'dbname' when i ...
0
votes
1answer
324 views
Whats wrong with HttpServletResponse#addHeader?
I'm running in my web app filter, which recieves from external source info about user, if he's logged in or not. Heres my filter:
@Override
public void doFilter( ServletRequest request, ...
2
votes
2answers
111 views
Programmatic invalidation of HttpSession
Is it possible to terminate a logged in user's HttpSession?
We can do the following from within the user's session:
HttpSession s = request.getSession(false);
s.invalidate(); // make sure s != null
...
0
votes
1answer
163 views
Is it possible to use a profile based filter in your web.xml
Is it possible to use a profile based filter in your web.xml ? For example
<filter>
<filter-name>springSecurityFilterChain</filter-name>
...
3
votes
1answer
976 views
Spring Security with DelegatingFilterProxy
I have created a spring security Filter as below.
<!-- Enables Spring Security -->
<filter>
<filter-name>springSecurityFilterChain</filter-name>
...
0
votes
1answer
129 views
Spring authentication is failing if URL accessed via java code
Currently I am using the Spring Security Authentication via Spring Filter and Servlet.
<servlet-mapping>
<servlet-name>remoting</servlet-name>
...
0
votes
1answer
160 views
logout on browser closed spring mvc
when i closed the browser it logged in person will automatically need to logout is there any solution for it please help me ,i'm working in spring mvc.As we close the window of gmail we are ...
4
votes
1answer
2k views
Combining DispatcherServlet, ContextLoaderListener and SpringSecurity
I have quite a nut to crack here.. Been trying to integrate said 3 technologies into our webapp.. We want to use
Spring Web
Spring MVC as view technology (with freemarker)
Spring Security as ...
10
votes
4answers
466 views
Unable to access Spring Security information during a servlet multipart post
I'm unable to access Spring Security information during a servlet multipart post. The spring security information is available during regular get and post methods, but is not available for a multipart ...
1
vote
1answer
229 views
Two concurrent authentications, managed separately, with Spring Security 3.1?
I am building an app that has two types of users:
regular users (have role 'user')
administrative users (have role 'admin', but do not have 'user' privileges)
How can I go about allowing someone ...
0
votes
1answer
287 views
Spring security Filters and Authentication in Spring Web Services
I had recently been able to secure my web application and authenticate the user by using basic authentication. An added requirement was to check against user's ip address from request parameter and I ...
1
vote
2answers
831 views
Accessing HttpServletRequest during DaoAuthenticationProvider authenticate in Spring Security
I need to access the HttpServletRequest object from within my DaoAuthenticationProvider in Spring security.
The security component extends the DaoAuthenticationProvider and we override the ...
0
votes
1answer
62 views
Spring OAuth2 - ensure call to OAuth2ProtectedResourceFilter
How do I ensure that a call is being made to the OAuth2ProtectedResourceFilter when a request is sent with the oauth_token in the Authorization header?
1
vote
1answer
467 views
MockHttpServletRequest isn't passing the URL to next filter in chain
I am trying to implement a filter that uses MockHttpServletRequest to add a header to the request object. I want to use that header for preauthentication. This is the filter class..
public class ...
2
votes
3answers
3k views
request.getRemoteUser() sometimes returns null
I have a java-web-application using struts2 combined with old-style servlets.
Using Acegi security.
In my servlets, I'm logging what the user is trying to do and which user it is. To get the user im ...
3
votes
2answers
2k views
Auto login with spring security
I have an application which uses spring-security. In my signup process, a new user entity gets persisted with the HASHED password, an email containing an activation token is the sent to the user. ...
1
vote
0answers
517 views
Spring security Custom Filter: cannot read FROM POST parameter
I am trying to read a form-post parameter with the following code:
String hohumId = request.getParameter("HOHUM_ID");
if (hohumId == null) {
throw new
...
4
votes
4answers
3k views
Logging user activity in web app
I'd like to be able to log user activities in a web app. I'm currently using log4j which works well for logging errors etc, but I'm unsure what the best approach is to log the user, executed servlet ...
3
votes
2answers
258 views
is it allowed to redirect a request after forwarding?
In certain scenarios I want to forcefully logout a user. I'm using Spring Security and the only way I know how to do this is to forward/redirect to /logout (or whatever URL Spring listens to for ...
0
votes
1answer
759 views
Spring Security : About the names j_username and j_password in the form
Hi I am reading this book on Spring Security . It talks about the specific names j_username and j_password .
The form field names are specified by UsernamePasswordAuthenticationFilter
itself, and ...
0
votes
0answers
228 views
No Loggin Back in - Concurrent Users Login
i have a glitch in the my spring security concurrent user implementation.
Before I continue I want say that it works as it shown.
The only issue is that the users that has been logged out has to ...
4
votes
2answers
2k views
JSESSION/HTTPSession vs. application-crafted session ID
In a web application based on propraietery MVC and authorization model, we have recently migrated to Spring MVC.
As part of that move, we are also looking at moving away from a locally created GUID ...
2
votes
1answer
2k views
HttpsCookieFilter - IllegalStateException: getOutputStream() has already been called for this response
Following exception is thrown every once in a while and it shows up in localhost log file in tomcat log directory. If anyone know how to get rid of it, all help would be appreciated. BTW the filter is ...
3
votes
1answer
2k views
How to encode a url in spring framework?
greetings all
I have a post method in a controller, which redirects to a new page
I a way such like:
@RequestMapping(method = RequestMethod.POST)
public String post(HttpServletRequest request) {
...
0
votes
1answer
1k views
Spring Security 3.0: How do I specify URLs to which a custom filter applies?
I am using Spring Security 3.0 with JSPs. I have created a RequireVerificationFilter that redirects unverified users to a "verify your email" page.
I added the filter to the spring security filter ...
3
votes
1answer
3k views
Why use the j_username and SPRING_SECURITY_LAST_USERNAME variables?
Why do this?
<input type="text" name="j_username" value="${SPRING_SECURITY_LAST_USERNAME}">
instead of this?
<input type="text" name="username" value="">
What's the value of the ...
0
votes
2answers
224 views
Is it possible to use a different Spring Security AuthenticationProvider in different servlets, same WAR?
I have a single WAR that runs two servlets. One provides AMF remoting to Flex clients and other SOAP/HTTP to web service clients. I currently have Spring Security configured to authenticate the Flex ...
2
votes
1answer
11k views
Detect session timeout in Spring 3/Spring Security 2.0.5
I have a web application running under Spring 3 with SpringSecurity 2.0.5.
To present the user the changes to the site since his last visit, I try to register the time when his session is destroyed. ...
2
votes
1answer
615 views
applying JSP/JSTL's <c:url> to a path inside a servlet
In our JSP pages, we use extensively. Works great, rewrites the URL to deal with sessionids, contexts, etc. But now we need to do some of this work inside a class that takes an HttpServletRequest ...
8
votes
1answer
2k views
Spring Security, Spring MVC and Login Sessions
I have my Spring MVC & Spring Security up and running as suggested by Spring's own reference application "petclinic". Everything's fine except that the login does not persist a browser restart.
...
12
votes
4answers
10k views
How can I prevent spring-security from appending ;jsessionid=XXX to login redirects?
When an unauthenticated client requests a URL that requires a non-anonymous access level as defined in security-config.xml, spring security sends an HTTP redirect to our login page (e.g. /login). ...
6
votes
1answer
11k views
How do web.xml filters work? Can you have two filters map to all pages (/*) and specify the order?
I want to use Spring Security, and it says to map the filter to /*. But I already have a filter mapped to /*, which is the Tuckee URLRewrite filter.
Is it possible to map two filters to the same ...
0
votes
2answers
763 views
How do I convert JSP (custom tags) to Code in a servlet in Spring Security?
I am working on a project where I have to include some code from a JSP.
This JSP has code as follows (related to Spring Security) ...
<%@ taglib prefix='c' uri='http://java.sun.com/jstl/core_rt' ...
5
votes
3answers
3k views
Does Acegi/Spring security support getUserPrincipal()?
I need to interface an existing application with Acegi/Spring security.
In order to get started I am looking for one simple piece of information: in this context, will ...
