Ok I´ve somehow managed to solve my problem by changing from RequestContextFilter to GenericFilterBean.
In the extends of my class.
Type: Posts; User: linker85; Keyword(s):
Ok I´ve somehow managed to solve my problem by changing from RequestContextFilter to GenericFilterBean.
In the extends of my class.
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...
Hi!
I got a joinpoint that uses custom annotation and it goes like this:
@AfterReturning(pointcut =...
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...
Hi I´ve a simple webservice like this:
@WebService
public class HelloImpl {
/**
* @param name
* @return Say hello to the person.
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...
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...
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.
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...
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...
Without the splitter I got the exception of no suscribers and with the splitter the exception disapeared,
what else do I need?
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...
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)
...
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"...
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...
Hi!
I´ve a spring context like this:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"...
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);
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...
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...
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:...