Tagged Questions
16
votes
6answers
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
0answers
48 views
Configure interval based cron in Spring JMS integration
I need to forward message from Queue1 to Queue2 in specified interval but NOT just after the message arrived in Queue1. Below is my config.
<int-jms:inbound-channel-adapter ...
2
votes
3answers
165 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
1answer
26 views
Getting JMS headers on Spring Integration
How do I get JMS headers on my spring integration jms inbound channel ? I have not found much information on the reference.
Thanks and regards.
1
vote
0answers
138 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 ...
1
vote
2answers
327 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
295 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
13 views
Spring integration publishes a message in an outbound topic
I have spring integration pipeline that should publish a message to an ActiveMQ topic. I'm trying to configure de spring xml file with the following configuration
<bean id="myTopic" ...
0
votes
1answer
80 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
1answer
452 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. ...