Have you changed anything to the ApplicationContext.xml?
How many System.err.println("Echo") message do you see printed out in the log by the EchoStringServerService.java class? I see 2 "echo"...
Type: Posts; User: SimonT; Keyword(s):
Have you changed anything to the ApplicationContext.xml?
How many System.err.println("Echo") message do you see printed out in the log by the EchoStringServerService.java class? I see 2 "echo"...
I have updated my test cases with some more and found that the handler gets invoked twice which is pretty annoying (Bug).
Also, it looks like it is impossible to retrieve a Message<T> from a...
I am currently testing Spring Integration 1.0.0.M5 and I have run in an unexplained behavior. I created a simple Echo test case.
I defined a Publisher which publish a String on a channel (A). A...
Does Spring Integration support Asynchronous request reply correlation?
Given the following sequence:
- Send Request on channel 1
- Do some asynchronous processing
- Received Response on...
Thanks for the pointers. It should get me started. So now, given your advice I should be able to have access to the message and using a MessageSelector I should be able to configure the type of...
I would like to implement a process using Spring Integration where Component A (Ca) and Component B (Cb) publish messages to Component C (Cc) who delegates processing to Component D (Cd):
Sorry...
It works, Thanks! By the way, do you know how to browse the springSource Milestone repository (using the web, for example)? How did you found out about those reopsitories?
Simon
I am trying to add Spring Integration M4 dependency to a project using Maven 2 but I just can't seem to find a way to configure the repository and dependency properly.
I have tried to no avail,...
I am trying to build a RCP application using SWT for the GUI layer and Hibernate for the persistency layer. I am trying to mimic an Open Session In View filter on my GUI layer.
To do so, from my...
I found the problem to my bug. It is related to SPR-4207
Basically what needs to be done is to remove from the applicationContext.xml file the following line for Hibernate properties:
Once...
I am trying to use declarative transaction management in my DAO code using @Transactional annotation. Unfortunately it fails with the error:
My DAO method invoked is the following:
...