i think you replied to the wrong message
Type: Posts; User: ervalerio; Keyword(s):
i think you replied to the wrong message
hello everyone,
i use httpInvoker to retrive objects (thousands) from a remote service. everything works find, but quite randomly i get a 'too many files open'.
This is probably because, under...
i think i understand what the problem came from.
I was explicitely setting the content-type in the header of the PostMethod..which doesn't seem to be necessary (or somehow, handled by http-client).
the problem has vanished trying to use spring 2.0 ..
can it be some known issues with the 1.2.x series?
hello
i'm writing a swing-based application to send some files to my webapp. everything already works fine through the web front-end, but we need to upload big directories, and writing a client-side...
last time i checked there were still some module missing. i just checked on ibiblio, everything is there now!
thanks guys!
thanks Rick,
as soon we switch to 2.x (we're waiting for its presence in maven repositories) i'll surely use this approach (and hopefully shorten a bit my spring app descriptor!)
that was a life-safer !
<property name="crawlerDescriptors">
<map>
<entry key="CommercialistaTelematico">
<list>
<value...
i tried with the following:
<property name="descriptors">
<list>
<value>classpath:crawler/dirittoit_tributarioold.xml</value>
...
the stacktrace:
java.lang.ClassCastException: java.lang.String
at it.chi.plinio.controller.CrawlerControllerIntegrationTest.testListCrawlerDescriptors(CrawlerControllerIntegrationTest.java:35)...
there's no much more code than the one i posted...
import org.springframework.core.io.Resource;
public class MyBean {
private Map<String,List<Resource>> crawlerDescriptors;...
hello,
consider a bean like:
public class MyBean{
private Map<String,List<Resource>> crawlerDescriptors;
...
}
hello,
i have the following bean:
public class MyController extends MultiActionController {
private List<String> crawlerDescriptors;
...
}
this is something i would have liked much more than the hard-coded null values. Unfortunately, it seems this is not available in current releases. :(
It'd be cool to contribute it.
does the additional context xml file has to provide a complete definition of the bean, or i can simply put some 'property' element into an xml file and load it as a spring context?
hello,
i have a standard sessionfactory bean (i removed irrelevant stuff):
<bean id="sessionFactory"
...
i decided to package my app togheter with jetty, and distribute it with different shell scripts.
try ask to the jetty ML : there was some news about spring integration, which i didn't take much...
Hello,
i need to distribute my webapp so that users can install it into their machines, and with a simple click they have a servlet container up&running, and the application 'deployed' in it.
...
hello,
problem is that i declare to return something else than null..
i think there should be a stronger support for controller writing directly into the response, or a way to bind a stream...
Hello,
I have the following architecture:
View (JSP)
-------
Controller (Spring MVC)
-------
Model (pojos +hibernate)
hello,
do you mean that it is correct to manually write the xml response directly into the HttpResponse writer object ?
It sounds so a low level approach to me..
could you post some piece of your solution, or explain how you did it ?
I'm searching for an ajax-file-upload solution ready out of the box, so that i can replace my uploadFileController with an...
I'm still evalutating the proposed solutions, thanks everyone.
Since Velocity hasn't stopped its development, I'll give it also a chance :)
the previous post was related to spring 1.2.6 (for all involved packages).
i tried upgrading to 1.2.7 (latest on ibiblio..), and the exception turned into type IllegalArgumentException.
...
hello everyone,
i'm trying to execute some code around the code defined for actions defined in a MultiActionController. So, i have the following bean configuration for beans implementing the around...