Questions tagged [eai]

Enterprise Application Integration (EAI) refers to the use of architectural principles, architectural frameworks, and software middleware to integrate computer systems and applications as unified solutions across large enterprises. The EAI can range from simple transfer of data between two business applications, to a message-based system, providing a complex business process by combining functionality from a multitude of business applications.

94 questions
1
vote
1 answer

How does SWIFT work?

I would like to understand the way SWIFT messages work. I tried to understand from Google and it says that it uses packet switched network mechanism. It would be of great favour if somebody can throw light on the following questions Whether SWIFT…
venkat
  • 61
  • 1
  • 4
  • 11
1
vote
2 answers

EAI - messaging bridge vs message translator

I've been reading up on Spring Integration and Enterprise Integration Patterns. I'm stuck on the Messaging Bridge…
maciej
  • 768
  • 1
  • 6
  • 19
0
votes
0 answers

How can I implement a wire tap / interceptor for calls to a web service?

What is the easiest / best way to intercept calls to a web service? I've got a situation where a web application is calling another applications web services, i.e. a point-to-point integration. The problem is I have no (or at least very limited)…
SteveC
  • 15,808
  • 23
  • 102
  • 173
0
votes
0 answers

Why regular expression does not work with input type "email"?

I have used regular expression pattern with input type 'email' which is supposed to support ASCII as well as Unicode characters. But when I try to submit it shows 'Please match the requested format' even for ASCII email address. Code as follows…
Stack User
  • 19
  • 1
  • 5
0
votes
2 answers

How to write a Camel Quarkus extension for a Camel component/endpoint?

I have an own camel component/endpoint that I used successfully in many routes in a Spring Boot App. I am trying to migrate to camel quarkus and use the same routes in my application. It's not possible to use this component/endpoint in my…
Meziane
  • 1,586
  • 1
  • 12
  • 22
0
votes
1 answer

Circuit Breaker for asynchronous channel along with Dead Letter Channel

I have a requirement to use circuit breaker along with a Dead Letter Channel (DLC). The errored out messages should go to DLC. The other messages should not be consumed while the circuit is open. Right now I have implemented like below: public void…
SRaj
  • 1,168
  • 1
  • 14
  • 36
0
votes
1 answer

Apache Camel File Append Not Working in Windows

I have a simple route where I write some string to an output file and then trying to append the contents of the original file. But it ignores and it overwrites the file. from("file://inputFolder") .routeId("InputFolderToTestSedaRoute") …
SRaj
  • 1,168
  • 1
  • 14
  • 36
0
votes
0 answers

Apache Camel Aggregation - out of memory issue

I have to create a large XML using Camel. Basically, I use smaller messages and finally aggregate all to create the final XML using Camel aggregator. My issue is that it throws out of memory error when I create large XML file. For smaller XML files,…
SRaj
  • 1,168
  • 1
  • 14
  • 36
0
votes
0 answers

Working on incoming emails with SSIS

We are quite successful in using SSIS for sending out email notifications. On the other hand, we are missing an Email Source Adapter. Assume the following situation: we receive mail with standardized Attachments. (e.g. Excel) We would like to have…
0
votes
1 answer

Enriching Collection

I would like to enrich collection of orders with person details. Suppose I've (example is in json): [ { "orderId": 123, "quantity": 5, "buyerId": "84aa820f-2301-4d01-8c4c-2b71204da7dd" }, { "orderId": 124, …
Dariss
  • 1,258
  • 1
  • 12
  • 27
0
votes
2 answers

How to Integrate OutSystems to MuleSoft?

I need to integrate Mulesoft with OutSystems. Can anyone help me in knowing the basics? Thanks.
Abhishek
  • 21
  • 1
  • 5
0
votes
1 answer

What is the difference between a content enricher vs Service Activator with a reply channel?

http://www.enterpriseintegrationpatterns.com/patterns/messaging/DataEnricher.html http://www.enterpriseintegrationpatterns.com/patterns/messaging/MessagingAdapter.html If there is a reponse channel, service activator seems completely identical to…
hummingV
  • 1,014
  • 1
  • 11
  • 25
0
votes
2 answers

JBoss Fuse/ Red Hat JBoss developer Studio, Fuse Integration Project error

I'm getting an error upon running maven install, or maven clean on the following POM file in a graphical Camel Project. I'm using Red Hat JBoss Developer Studio My pom flie is as follows
BEvo
  • 357
  • 6
  • 18
0
votes
1 answer

How to implement Synchronous web service on JMS / MOM system?

I am working on a project which have many legacy heterogeneous systems. We are planing to connect them using JMS/MOM/ESB but need Synchronous web service calls from client. i.e Request/Response architecture using web service is a…
supernova
  • 3,111
  • 4
  • 33
  • 30
0
votes
1 answer

Should the system of records be replicated to different system?

I've a customer master system that's used for storing, updating and retrieving customer information. The service calls is of the order of 300-600 milliseconds. Obviously it's the system of records. I'm designing another promotional system that…
Kay
  • 393
  • 4
  • 15