Hey guys,
While reading Spring In Action 2, I am wondering in what other scenario I would want to chain filters. Since the filters are mapped to specific url patterns, all requests matching the...
Type: Posts; User: liangchen76; Keyword(s):
Hey guys,
While reading Spring In Action 2, I am wondering in what other scenario I would want to chain filters. Since the filters are mapped to specific url patterns, all requests matching the...
what do you mean "unaware of SSL etc? Can Acegi work with LDAPS?
Thanks Luke.
I am not sure where to look into. Is there any particular with Acegi regarding LDAP w/ SSL/TSL or LDAP certificate? The sys admin is being incooperative and asserts the users exist...
I wrote a little standalone java program to test user authentication against LDAP (SSL/STL). All attributes were double-checked. I was assured the users did exist on the server. The key certificate...
I am learning dojo.xhrGet and Spring. The application allows a user to enter some amount to deposite/withdraw from an account. It works perfectly fine in Firefox but ONLY ONCE in IE. I am not sure...
i am writing a web application with Spring. The app needs to be aware of using user preferences throughout every workflow. For example,
getToolbar(UserPrefs userPrefs);
getDocument(Keyword...
Thanks for suggestion. I will think about them.
If anyone cares to know, I found out your can still get the current session with WebContextFactory as usual. The only difference is that those...
You asked a very good question.
I am tasked to re-organizing the code into the spring framework. The code was written to POJO + dwr. I know DWR can allow you to access the session in any object...
Hi all,
I just started using spring and feel things are so implicit. I am wondering how to get the current session. For example,
<bean id="a" class="my.domain.ClassA">
<bean id="b"...
Sorry. I guess i was smoking something :)
PasswordEncoder passwordEncoder = new PlaintextPasswordEncoder();
should be
PasswordEncoder passwordEncoder = new Md5PasswordEncoder();
but I am...
Hi,
I am be in a situation: trying to insert encrypted passwords to database. I won't be able to test the security part without it, although it works with plain text passwords. A little program...
Hi Mike,
Is the single spring.jar replaced by modualized spring*.jar files in 2.5? If I added all spring*.jar module files, do I still need that single spring.jar file?
thanks,
Thanks Mike. I saw them under spring-webmvc.jar
Hi,
I am be in the same situation: trying to insert encrypted passwords to database. I won't be able to test the security part without it, although it works with plain text passwords. A little...
Did you solve your problem by adding spring-web.jar?
I looked at spring-web.jar under /dist/modules. It is the same, no org.springframework.web.servlet.mvc package.
I had the same problem. Thanks:)
Hi all,
I am upgrading my web application from spring 1.2.9 to 2.5. It is using ModelAndView and Controller. They used to be org.springframework.web.servlet.mvc. But Controller is moved to...