Tagged Questions
16
votes
5answers
6k views
When to use Spring Integration vs. Camel?
As a seasoned Spring user I was assuming that Spring Integration would make the most sense in a recent project requiring some (JMS) messaging capabilities (more details). After some days working with ...
3
votes
3answers
3k views
How to leverage Spring Integration in a real-world JMS distributed architecture?
For the following scenario I am looking for your advices and tips on best practices:
In a distributed (mainly Java-based) system with:
many (different) client applications (web-app, command-line ...
2
votes
3answers
158 views
Logging a global ID in multiple components
I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications.
[App A] -> [App B] -> [App C]
We set a ...
1
vote
2answers
303 views
Spring integration inbound-gateway Fire an event when queue is empty
I'm a newbie around but I'll try to be consice.
{INPUT QUEUE}->[INBOUND-GATEWAY-1]-->[ROUTER]----------->(ACTIVATOR)<---------------
\ ...
1
vote
1answer
289 views
Securing JMS message-driven-channel-adapter
I am using a message-driven-channel-adapter to read messages off MQ queue, and this has been working fine in development. Now, in preparation for the first production release, I have to read a secured ...
1
vote
1answer
2k views
DefaultMessageListenerContainer not working with Websphere MQ
I am using spring 2.5.6 and spring-integration 1.0.3 and MQ client 6.0.2.2
I have had to add a message selector to my message-driven-channel-adapter, but now I am getting the following error:
...
0
votes
1answer
68 views
SpringIntegration message size to big, how to split
I have a SprintIntegration system with a JMS endpoint. The size limit for messages is 4mb. I have results which are larger then that, how do I get SI to split that up into several messages?
/A
0
votes
0answers
112 views
Spring Integration JMS Outbound adapter transaction control
in order to reach high performance production of messages with jms with transactions enabled, one needs to control the amount of messages being sent on each transaction, the larger the number the ...
0
votes
1answer
427 views
Spring Integration: sending response to temp JMS queue
I am using Spring Integrations 2.0.0 and am trying to configure the following:
An application places an object on an ActiveMQ JMS queue which is processed by the Spring-integration-driven backend. ...