Is about 50MB, but I have tried with files of 6 MB and .25MB with the same results, so i was thinking that it was more related to the server.
We tried increasing the default buffer size from 2K...
Type: Posts; User: sic_people; Keyword(s):
Is about 50MB, but I have tried with files of 6 MB and .25MB with the same results, so i was thinking that it was more related to the server.
We tried increasing the default buffer size from 2K...
Hi everyone,
Have anyone have an issue when you upload to an FTP and the suffix added to the file (.writing by default) does not get renamed?
We have implemented a process that send a file to...
Hi,
I have a job that generates a dump into a csv file. This file is generated by combinating and procesing several info in the database, that then is loaded into a global temporary table by a...
What about, reding them in a "Flat Object" and then in the Item Processor transform them into normalized Object (Hibernate Object) and in the item writer hibernate make its magic.
I got a batch that works thought xml files, there a several records in the files, and sometimes there is just a couple of records with problem, so i configure the skip mechanism in order to work with...
Ok, that is the only solution that works, well at least the only one that I can think about. I adapt the WS sample to a poller.
Any suggestion or comments will be welcome.
...
Is there any way to poll a web service (WS).
There is a WS that i need to poll it would send me back information about the last changes in the information. is there any way to do an...
Why dont you try something like wireshark to see the full request that you are making in the every browser and see whats different in explorer, to know what could be the problem
Are you using this class in other part??... remember that this class is only visible within the controller
what error do you get ? ... how do you use it ? post your code/stacktrace
Remember that the controller are stateless, so they don't keep their information between requests:
You have two options:
Use a session object
keep the information in a form (hidden fields for...
Ok you should do something like
@Override
protected Map referenceData(PortletRequest request, Object command, Errors errors) throws Exception {
//... all your previous code;
...
how are you creating your select box ?? are you creating this within a form, if you are within a form, you only need to set the value in the backing object, or the command object, that you create in...
use teh getParameter method in the request object:
String isbn = request.getParameter("isbn");
Try with an interceptor...an do something like :
public class RequesInterceptor extends HandlerInterceptorAdapter {
private static Object lock = new Object();
private static int count = 0
...
Post your spring configuration in order to see the whole picture, but if i have to guess this could be the problem:
you should return :
return new ModelAndView("hello");
Hello, I'm trying to deploy a web application to an OAS 10.1.3, the application is a web interface that uses WS to do some task, so the app is using the Sprign-WS as a client, The problem is that...
why dont you try something like this, just to display the errors codes and then correct it
<spring:hasBindErrors name="command">
<c:forEach items="${errors.allErrors}" var="error">
...
your controller should have a BindingResult in their parameter, if it found a binding result then it exposes the error, if not it throws an exception
the error is exposes as
...
Ok the problem is that you have two spring context
one is your ServletApplicationContext created by the DispatcherServlet,
and another one that is your beanRefFactory that is a Spring...
With this i think you are a creating a second applicationContext, inside your applicationContext...
try using someting like
<import resource="classpath:applicationContext.xml"/>
<import...
This is probably because you have more than one datasource, in your app, not a big issue.
In the documentation says , this can cause some troubles if you modify any of your model in the view,...
JREmptyDataSource... in the Jasper documentation say taht you always have to have an datasource, if you don need a database connection , the empty datasource will work good luck...
i think that the tag you are looking for is:
<spring:hasBindErrors name="${form}">
</spring:hasBindErrors>
it exposes the errors in the "errors" variable
How do i use jasper reports with spring annotations configuration, which would be the best aproach?, declare another view resolver? and thats it? or requires another configuration. Does Anybody has...
is there a possibility to use an @not annotations in the validation framework, i would be useful if we want to do something like:
@not(@inthepast)
is there any work around to do this now=
...