Questions tagged [enterprise-integration]

Enterprise application integration (EAI) is the use of software and computer systems architectural principles to integrate a set of enterprise computer applications.

130 questions
2
votes
1 answer

Spring Integration HTTP to Scatter Gather

I'm new to Spring Integration and trying to make use of the enterprise pattern of scatter-gather, but I'm struggling with implementation details and struggling with available examples I can find online. In short my scenario is: An HTTP request is…
2
votes
1 answer

is there any out of the box spring ingetration pattern for consuming message from dynamic queue and process them?

I am trying to achieve a scenario using spring integration where it has to process redis queue(s) generated on the fly. The examples I have found so far on internet works on predefined queues. In my situation, there are more than 100 redis queues…
2
votes
2 answers

Scatter-Gather (Clone+Aggregate) not working

I'm trying to call two endpoints with clone and gather their information to send with aggregate, I must use it with scatter-gather mediator. Each endpoint returns a string in json. But I keep having a "Expecting an implementation of SOAP Envelope as…
2
votes
3 answers

Tibco Designer

I am doing a project with tibco designer and require an xml document to be required to be repeated to 3 destinations with some tags modified. I was thinking of doing this in JAVA with a tokeniser, but I was wondering if TIBCO designer 5.3 has this…
2
votes
1 answer

Route with successful route as prerequisite (Camel)

I currently have the following camel route: //Only continue to next route if success from("file:///tmp/camel/input") .routeId("Test Route") .to("file:///tmp/camel/test") .onCompletion().onCompleteOnly() .log("Success for…
Swifting
  • 449
  • 1
  • 5
  • 19
2
votes
1 answer

Spring integration Scatter-Gather pattern with JMS transport

I need to implement the following architecture: I have data that must be sent to systems (Some external application ) using JMS. Depending on the data you need to send only to the necessary systems (For example, if the number of systems is 4, then…
Wi-Al
  • 225
  • 1
  • 13
2
votes
2 answers

Can I use Apache Camel as ESB?

I was trying to know more about Apache Camel, Mule ESB, JBoss ESB]...and in general speaking about ESB. I can find several ESB characteristic in Apache Camel. So, can I use Apache Camel like ESB or is Apache ServiceMix is the best fit?
Omar F.
  • 27
  • 5
2
votes
3 answers

Camel: File consumer component "bites off more than it can chew", pipeline dies from out-of-memory error

I have a route defined in Camel that goes something like this: GET request comes in, a file gets created in the file system. File consumer picks it up, fetches data from external web services, and sends the resulting message by POST to other web…
Antares42
  • 1,406
  • 1
  • 15
  • 45
2
votes
2 answers

Apache Camel: Keeping routing information completely independent of the Java Code

First of all thanks to folks who are currently involved in the development of Camel, I am grateful for all the hard work they have put in. I am looking for some design advice. The architecture is something like this: I have a bunch of Java classes…
2
votes
0 answers

How to "relate" APIs sharing similar information, without too much coupling?

I need to integrate 3 systems, each one with its own REST API. These systems need to share some information, let's say about products (just to simplify the discussion). Each system has its own representation of the same physical product, with its…
Jacek
  • 194
  • 1
  • 11
2
votes
0 answers

Protecting messages following outbound adapter failure

I have an aggregator right before an outbound adapter (in order to batch requests). I would like to ensure that, when the outbound adapter is failing, the aggregator stops releasing messages, and, in turn, the backpressure propagates up the…
jwilner
  • 6,348
  • 6
  • 35
  • 47
2
votes
1 answer

Does Akka natively support Integration Patterns?

I am new to Akka and am trying to figure out whether it has built-in support for Enterprise Integration Patterns (EIP) or whether I need to delegate this type of routing/integration out to a framework like Camel. In my use case, I have an actor that…
smeeb
  • 27,777
  • 57
  • 250
  • 447
2
votes
1 answer

Using Spring Integration and AMQP, can I create Pub-Sub groups of Competing Consumers?

I'd like to create a setup like in the picture below: Can this be done with Spring Integration's support for AMQP? I.e. can the communication channels in the picture be AMQP? The goal is so that: Each component in the picture can be a separate…
Jan Żankowski
  • 8,690
  • 7
  • 38
  • 52
2
votes
1 answer

How to run parallel Aggregators in Spring Integration?

I'd like to run a Spring Integration flow where I can easily scale up instances of components if capacity of any is reached. In particular, I wonder how to scale Aggregators in a following scenario: Various components right before the Aggregator…
2
votes
1 answer

What Camel DSL is appropriate for message handling pattern?

I have a situation where I need applications to send messages to a message broker. Another client listening to the broker must then consume messages off the queue, determine what type of message they are, and pass the message off to the appropriate…
1 2
3
8 9