Nilesh, thanks a lot for your reply!
I'll check out the links you mentioned. The main problem in our case is that we're not using 'pure .NET'. The whole thing has to work with BizTalk 2004 which...
Type: Posts; User: j2ux; Keyword(s):
Nilesh, thanks a lot for your reply!
I'll check out the links you mentioned. The main problem in our case is that we're not using 'pure .NET'. The whole thing has to work with BizTalk 2004 which...
I just checked out the jPetStore Axis example and I'm impressed how easy the Axis integration works.
But somewhere in the client source Jürgen mentions that you can't transfer complex objects via...
I have problems with converting/formatting java.util.Date and java.lang.Double objects.
Date objects don't get the right format when loading. I've registered a CustomDateEditor with
...
I assume you're using Windows ? This is something that happens often when using Windows.
Under Linux it's just about a few seconds so it the OS, not the archive.
What is the easiest way to lock users after a predefined number of attempts regardless of the session aspects mentioned in this thread ?
I need to implement this for a new application and would...
It would be good to deal with features not covered by existing documentation like locking of users, etc.
This article just repeats what's already available. But it's a nice summary.
I still need an answer regarding question 1.
I've defined this in my viewResolver:
<property name="requestContextAttribute"><value>rc</value></property>
and I can access the contextPath in...
I want to organize my JSP's located under /WEB-INF/jsp in subdirectories like
/WEB-INF/jsp/projects/
/WEB-INF/jsp/users/
etc.
I couldn't make this work with PropertiesMethodNameResolver, I...
For me, this throws always a JSP exception like "...getMessage must be used with a prefix ..."
1. How can I retrieve the following as text from a JSP (for use as a JavaScript parameter):
errors.rejectValue("person.name", "errors.required", new Object[]{"Name"}, "Value required.");
...
OK, thanks for the hint !
This is Jürgen's solution:
<c:forEach items="${person.addresses}" var="address" varStatus="loopStatus">
<spring:bind...
I need some advice doing the following:
- I want to display a list of projects (retrieved from Hibernate), I need to iterate over this list
- some attributes of each project int the list need to...
OK, thanks for pointing that out !
It maybe a workaround but there's still a bug.
The following code is taken from the petclinic sample and does NOT work with Spring 1.1 final (no line break included):
<TEXTAREA rows="10"...
Just forget about the first post. I somewhere had a JSP which included the acegi taglibs that I don't use at the moment. Tomcat 5.5 seems to be very strict when compiling JSPs.
Thanks,
Lars
Just tried to use an existing application with Tomcat 5.5 and JDK 5.0 (this app previously worked with JDK 1.4.2 and Tomcat 5.0.x).
Maybe you should look at the errors for future compatibility...
Yes, normally I'd think Spring should handle this like other properties (String, etc). But this didn't work in my case.
Thanks,
Lars
I found the solution myself, there is manual handling involved (btw this could be handled by the framework...)
You have to handle this in "onBind" or "onBindAndValidate":
if...
How do I have to handle checkboxes with Spring/JSP ?
The request always returns null, no matter if the box is checked or not. The corresponding field type in the domain object is of type boolean...
Yesterday I received my copy of the book (received 4 days after ordering) from Lehmann's (www.lob.de).
The price was 38,61 EUR, no shipping costs.
Again, thanks for the hint !
Regards,
Lars
Has this book already been delivered to you ?
Anyway, thanks for the hint !
Check out this link, this could be interesting in the future:
http://www.google.com/googlegroups/about.html
Regards,
Lars
You can use the request, e.g.:
String[] userRoles = request.getParameterValues("userRoles");
if (userRoles != null) {
for (int i = 0; i < userRoles.length; i++) {
...
Why don't you use dev.java.net ? The name "aurora" is still free and it's a project related to Java.
The examples look promising and it would be the best solution if the Spring team would...
I've already managed to use HTTPS for the login screen. What I wanted to know is how to switch the port numbers when the application server has configured other ports than the Acegi default ports.
...