Search:

Type: Posts; User: sic_people; Keyword(s):

Page 1 of 2 1 2

Search: Search took 0.03 seconds.

  1. Replies
    2
    Views
    700

    Is about 50MB, but I have tried with files of 6...

    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...
  2. Replies
    2
    Views
    700

    Spring FTP Outbound Adapter suffix

    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...
  3. Spring Batch and Oracle Temporary Tables

    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...
  4. What about, reding them in a "Flat Object" and...

    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.
  5. Replies
    1
    Views
    723

    Handling Skipped Items.

    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...
  6. Thread: ws - poller

    by sic_people
    Replies
    2
    Views
    887

    Ok, that is the only solution that works, well at...

    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.



    ...
  7. Thread: ws - poller

    by sic_people
    Replies
    2
    Views
    887

    ws - poller

    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...
  8. Replies
    4
    Views
    1,247

    Why dont you try something like wireshark to see...

    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
  9. Replies
    1
    Views
    750

    Are you using this class in other part??......

    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
  10. Remember that the controller are stateless, so...

    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...
  11. Replies
    4
    Views
    942

    Ok you should do something like ...

    Ok you should do something like



    @Override
    protected Map referenceData(PortletRequest request, Object command, Errors errors) throws Exception {
    //... all your previous code;
    ...
  12. Replies
    4
    Views
    942

    how are you creating your select box ?? are you...

    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...
  13. use teh getParameter method in the request...

    use teh getParameter method in the request object:

    String isbn = request.getParameter("isbn");
  14. Replies
    2
    Views
    634

    Try with an interceptor...an do something like :...

    Try with an interceptor...an do something like :


    public class RequesInterceptor extends HandlerInterceptorAdapter {
    private static Object lock = new Object();
    private static int count = 0
    ...
  15. Replies
    3
    Views
    784

    Post your spring configuration in order to see...

    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");
  16. Replies
    0
    Views
    1,075

    Deploying Spring-WS Client to OAS

    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...
  17. why dont you try something like this, just to...

    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">
    ...
  18. your controller should have a BindingResult in...

    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

    ...
  19. Replies
    5
    Views
    3,094

    Ok the problem is that you have two spring...

    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...
  20. Replies
    5
    Views
    3,094

    With this i think you are a creating a second...

    With this i think you are a creating a second applicationContext, inside your applicationContext...


    try using someting like

    <import resource="classpath:applicationContext.xml"/>
    <import...
  21. Replies
    1
    Views
    582

    This is probably because you have more than one...

    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,...
  22. Replies
    3
    Views
    1,067

    JREmptyDataSource... in the Jasper documentation...

    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...
  23. i think that the tag you are looking for is:...

    i think that the tag you are looking for is:
    <spring:hasBindErrors name="${form}">
    </spring:hasBindErrors>

    it exposes the errors in the "errors" variable
  24. Replies
    0
    Views
    897

    annotations + jasper

    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...
  25. Thread: @not

    by sic_people
    Replies
    0
    Views
    1,122

    @not

    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=
    ...
Results 1 to 25 of 42
Page 1 of 2 1 2