Search:

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

Search: Search took 0.01 seconds.

  1. Ok I´ve somehow managed to solve my problem by...

    Ok I´ve somehow managed to solve my problem by changing from RequestContextFilter to GenericFilterBean.
    In the extends of my class.
  2. why is my doFilterInternal method not being called?

    Hi! I´m trying to implement a filter that in the end will log the user navigation inside the system.

    My spring context goes like this:


    <?xml version="1.0" encoding="UTF-8"?>
    <b:beans...
  3. Replies
    0
    Views
    244

    why is my joinpoint not working?

    Hi!
    I got a joinpoint that uses custom annotation and it goes like this:


    @AfterReturning(pointcut =...
  4. Can AOP and AspectJ intercept spring integration queries?

    I´ve been checking AOP for a project I´m working. I know that with AOP and AspectJ we can intercept java classes, but can we intercept queries launched by spring integration??

    So if in my context...
  5. a question about spring-ws and spring ws template

    Hi I´ve a simple webservice like this:



    @WebService
    public class HelloImpl {

    /**
    * @param name
    * @return Say hello to the person.
  6. Why is my webservice throwing me null pointer exception?

    Hi!
    I´m writing a webservice client with spring-ws
    so in my main I´ve:


    import java.math.BigInteger;

    import org.springframework.beans.factory.annotation.Autowired;
    import...
  7. how to invoke a web service from spring integration

    Hi!

    I´m trying to call a webservice from inside spring integration. So I found in the documentation: http://static.springsource.org/spring-integration/reference/html/ws.html

    So in my context...
  8. I found that my last 2 channels that are parallel...

    I found that my last 2 channels that are parallel (after my router) were publisher subscriber, so I change them to regular channel and that fixed my problem. Altough I´m still not sure why.
  9. My service acivator is working in a weird way

    Hi.
    I´ve got a table in which I get data trough a jdbc:inbound-channel-adapter using a poller I get data and update the table so it won´t get the previous data selected, periodically. The problem is...
  10. How do I call a context when using annotations?

    Hi, good evening.

    As everyone may have seen, when you open the helloworld proyect from the spring-integration-by-example;
    in the example they don´t use annotations so when the call the spring...
  11. Without the splitter I got the exception of no...

    Without the splitter I got the exception of no suscribers and with the splitter the exception disapeared,
    what else do I need?
  12. failed to send message to channel 'transmitirCoffee' within timeout: -1

    Hi.
    Continuing with my past examples.
    I´m making a publisher-suscriber. My suscriber is a splitter which consumes from inbound-channel-adapter a list of coffees. The think is that the output...
  13. Ok I read the documentation and I found 2 ways ...

    Ok I read the documentation and I found 2 ways

    stored-proc-outbound-gateway (in the explanation they have the xml shows a definition with 2 parameters)


    ...
  14. Ok I decided to simplify it, so I let my spring...

    Ok I decided to simplify it, so I let my spring context like this:



    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns="http://www.springframework.org/schema/beans"...
  15. I just want to print the message in console and...

    I just want to print the message in console and sent it as you suggest to the next channel.
    So I did as you suggested but now I get:


    Failed to execute goal...
  16. How to add the suscribers to a publisher?

    Hi!

    I´ve a spring context like this:


    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns="http://www.springframework.org/schema/beans"...
  17. Worked perfectly thanks. Now for the function...

    Worked perfectly thanks.

    Now for the function that looks for coffees:


    create or replace
    FUNCTION find_coffee_beverages (pid in integer)
    RETURN varchar2
    AS
    description varchar2(25);
  18. Spring integration + oracle store procedures

    Hi. I´m trying to replicate the spring-integration store procedure coffee example from PostgreSQL to Oracle. Without success.
    Here is the link to the original code...
  19. the request was rejected because no multipart boundary was found

    Hi
    I´m trying to do an uploader using jquery and spring mvc, but when I try my upload I get: Caused by: org.apache.commons.fileupload.FileUploadException: the request was rejected because no...
  20. Help with Handler processing failed; nested exception is java.lang.NoSuchMethodError:

    I´m trying to do an insertion then I want to display my table. So my progam does the insertion, but when it goes to the success view I get the next trace:...
Results 1 to 20 of 21