Hello. I'm experiencing what I believe to be a problem with the way the login interceptor behaves after re-authenticating someone.
Here is my scenario:
A user is on a web page and the...
Type: Posts; User: jozeph78; Keyword(s):
Hello. I'm experiencing what I believe to be a problem with the way the login interceptor behaves after re-authenticating someone.
Here is my scenario:
A user is on a web page and the...
The sample application is only available though the svn/cvs site for spring security.
Scenario, I have an error message area. I want to display "Start Time is required" there but an "*" next to the start time field. So I would do the following:
...
I answered my own question. took a while. I actually found a related JIRA issue so i posted it there too.
http://jira.springframework.org/browse/SPR-4782
FOr searchability in the forums, the...
FYI this is teh exception I'm seeing. I'm really in a bind here. I hope someone can help!
org.springframework.dao.InvalidDataAccessApiUsageException: Unable to locate columns for table...
Hey guys.
I'm using the SpringJDBC generateInsertStatement which requires teh metadata to be available from the datasource. Since we use synynoms instead of tables (don't ask) I need to set the...
Just want to echo this recommendation. I fought Displaytag for a while because I felt it was too compromising but I'll never write another table again, especially now that Grails supports JSP tags. ...
It's a good question. Shows you are thinking strongly about architecture.
The model is the application itself. I frequently use domain classes directly as the command class. In this case you...
Hi. I've opened a similar thread in the Spring security forum for this issue. The Jira indicates this has been fixed but is is specific to the XSD for Spring integration?
Hi. I'm having a probelm with Spring SEcurity but it seems more related to PropertyPlaceholderConfigurer as the core error is using a variable for an integer typed attribute.
I want to set the...
Hi. I want to set the max number of sessions to 2 for normal use, but wish to use a PropertyPlaceholderConfigurer from outside which will allow me to use a parameter to shut this off during stress...
Excellent. Thank you!
So basic question but save me from the docs, how do I use this new RoleVoter in the namespace configuration? Just configure and it will be injected by Type?
Hi. I have a page I want to restrict to someone who must be in two roles. One is for the user type and then Admin. Is there a way to require that both roles are present for the intercept-url to pass...
Thanks for the reply. So I'm using Jetty, but Cookies are enabled on my browser. I don't understand why this ever happens and it only happens if I start from new browser and don't have the trailing...
Hey I've got a new bug in my Spring MVC app that requires the jSessionId never be shown in the url. Now I've done some looking around and realize that RedirectView will encode the url and make it...
Hi. I'll try to help.
Are you familliar with how GrantedAuthorities work? They are quite similar to roles. You can implement a UserDetailsService to put GrantedAuthorities to your UserDetails...
Hi. I'm no expert but it seems once you are authenticated, and pass beyond the acegi filter chain, you are into the realm of Spring MVC and can set a cookie using an interceptor or by any other...
Well thank you Luke for your feedback. Sorry if I came off frustrated, I was. But I still love everything Spring and am really glad I could wrap my head around this and get a nice implementation...
Luke you must be the only one on these forums. I feel like my posts are a direct conversation with you. You must secretly hate me. It's ok, I'm aware I've been a pain.
Regardless of my issues,...
Ok well I've managed to answer my own question for the 4th post in a row now. I really feel like a step child but then again maybe I am asking stupid questions. I have so much trouble with this...
Just when I feel like I'm understanding Spring Security I get caught up on something. I've spent the past 3-4 days re-reading the documentation, diving into source code, and combing the fourms but...
Ok I got this working. What I needed to do was add my j2eePreAuthenticatedProcessingFilter with the custom-filter position set to PRE_AUTH_FILTER. Here is my new namespace based security...
Hello.
I manged to configure my application to my needs using the preAuth sample. I removed a bunch of beans and consolidated some others but still have a pretty huge conifig (+100 lines and 17...
Well I ended up configuring my security realm to add a role to satisfy the web.xml security constraint and then my user details ignores this role and adds the roles I really want. I was hoping to...