I'm trying to implement what is shown in this link (http://blog.trickl.com/?tag=spring-social), but for some reason current Spring Social is not compatible with this example anymore.
I just need...
Type: Posts; User: __dev18; Keyword(s):
I'm trying to implement what is shown in this link (http://blog.trickl.com/?tag=spring-social), but for some reason current Spring Social is not compatible with this example anymore.
I just need...
Just add application/vnd.ms-excel as mime type for your view, and then it should work, if nothing else is broken.
I need to get ServletContextResource in class that implements InitializingBean, how is that possible? I tried with following, code but it get expcetion for that code.
Code:
public class...
From url you can see what database to use. There can be one or more customer databases. User details are in customer databases. So I need to know which database contains user credentials. It's login...
I need to contain customer name in login url, so that UserDetailsService will know which customer is logging in and use that particular database. Is this possible by just implementing...
I'm using urlrewriting to make my Spring Application urls SEF, but Spring Security dose redirects with full urls like http://localhost:8080/app/whateverurl/. Context app is for spring and then there...
Not if you have two different configurations. One for servlets and other for contextloaderlistener. Just don't put any beans to configuration that is meant for servlets, beans inside contextlistener...
What is your default-target-url in applicationContext-security.xml?
Because you use version 3.2, you need to add attribute last="true" to those rules for Spring security.
Js folder in your webconent cannot be accessed, because you need to add rule for that in your...
What version of urlrewrite filter you are using now? And these rules must be before app rule.
In version 3.2 you need to add following xml rules:
<rule>...
Hi, you need to add rules to urlrewrite filter xml for Spring Security Servelts. For example in your case you need to allow Spring Security handle url j_spring_security_check.
<rule>...
You should have your Tuckey Urlrewrite Filter before Spring Security Filter in web.xml, because otherwise it cannot work. Also version 3.2 is stable version of Tuckey, why cannot you use it? And then...
Ok, now I figured it out. I needed to add dispatcher-servlet.xml to be loaded by org.springframework.web.context.ContextLoaderListener.
So i put in web.xml:
<!-- Context parameters -->...
Thank you for you answer. Could you tell how can I configure dao in XML? I have used mostly annotations to do that.
I'm having same problem. I'm making application for Google App Engine. Pointing to manual is not really useful, people know that there is manual, but how to solve this question? I looked manual, but...
When I initialize Spring Framework 3 I use contextConfigListener to load spring config xml. But for some reason that is not enough, Spring needs also to load /WEB-INF/dispatcher-servlet.xml (where...
Ok, but how can I tell user that his account was suspended for certain time, because of too many wrong passwords?
How can I detect BF attacks with Spring Security? I found this solution (http://stackoverflow.com/questions/2681401/spring-security-how-to-implement-brute-force-detection-bfd), but it only shows how...
I actually found your second link (http://nonrepeatable.blogspot.com/2009/11/using-spring-security-with-tuckey.html) and I did what it suggested, but it didn't actually work, because Spring...
Is there any explanation for this issue? I need to get urlrewrite to work with Spring Security, but there are no tutorials or help on this issue!!!
I'm using Spring Security 3 with Spring Framework 3. When I set login-processing-url to login, I get following error:
Here is my applicationContext-security.xml:
<?xml version="1.0"...
I need to configure my web application to use Hibernate with ACL. How can I do this, because I didn't find any tutorial or samples for this from Google?
Basically what I need is users with...