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 ...
7
votes
2answers
86 views
Waiting for all threads to finish in Spring Integration
I have a self-executable jar program that relies heavily on Spring Integration. The problem I am having is that the program is terminating before the other Spring beans have completely finished.
...
4
votes
1answer
561 views
Spring - Async Queue for sending mail
I have this:
<si:poller max-messages-per-poll="10" id="defaultPoller" default="true">
<si:interval-trigger interval="5000"/>
</si:poller>
<si:channel id="emailIn"/>
...
3
votes
2answers
166 views
What is the best way to interoperably serialize a message?
I'm considering message serialization support for spring-integration. This would be useful for various wire level transports to implement guaranteed delivery, but also to allow interoperability 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 ...
3
votes
5answers
1k views
Spring integration with RabbitMQ
We have build a solution based on file based delivery using Spring-Integration. This works fine but we need to process many files. We are happy with Spring Integration but we want to scale up. For ...
2
votes
1answer
94 views
Static AND Dynamic Headers in Spring Integration Gateway
I'm able to add a dynamic header to a gateway by using:
public interface Gateway {
@Gateway(requestChannel="myChannel")
public void send(String message, @Header("dynamicHeaderValue") String ...
2
votes
2answers
579 views
Spring batch and Integration
I am a beginner to Spring and I have to do a project for school. What kind of project can I do which I can use Spring Batch and Integration. I know that I can write files into directories, write, read ...
2
votes
1answer
79 views
Where do all these messages come from?
This configuration works fine, but inbound-channel-adapter which is supposed to poll every 15 secs is running continously. Does anyone have an idea what I'm doning wrong?
<si:channel ...
2
votes
2answers
282 views
How to hold a queue of messages and have a group of working threads without polling?
I have a workflow that I want to looks something like this:
/ Worker 1 \
=Request Channel= -> [Holding Queue|||] -> Worker 2 -> =Response Channel=
...
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
1answer
28 views
Spring integration durable pub sub channel
Is it possible to configure durable pub sub channel in spring integration 2.1?
1
vote
1answer
73 views
stomp content-type header set to plain for xml content
I'm sending a XML content to ActiveMQ from ruby script using stomp
I'm explicitly setting the content-type header toapplication/xml;charset=utf-8 as shown below
client.publish queue, xml, ...
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
144 views
MessageHeaders get lost at HttpOutboundGateway
I implemented the Message interface to include some headers for use with a HeaderValueRouter on server side.
Within one VM this works (tested using a filter between two endpoints).
But if I send the ...
1
vote
1answer
179 views
spring integration and persistent objects
I am trying to use spring integration to decouple longer running action to get the response faster back to the user.
The request creates a gps position entry in our database. I want to do a http ...
1
vote
2answers
213 views
Only the first message is delivered to the server
I'm trying to poll a DB on client side and send the result over HTTP to a server which collects data. Unfortunatly only the first message is delivered. I'm new to spring-integration (1.0.3)
What is ...
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:
...
1
vote
2answers
929 views
Inbound Transformer on Spring Integration Proxy Gateway
I'd like to configure a process that looks something like:
Method Call -> Dynamic Proxy Gateway -> Channel -> Service Activator -> Method Call
^---------- Transformer <- ...
1
vote
1answer
369 views
Spring Integration 1.0 RC2: Streaming file content?
I've been trying to find information on this, but due to the immaturity of the Spring Integration framework I haven't had much luck.
Here is my desired work flow:
New files are placed in an ...
0
votes
0answers
59 views
Connection Pool Size for Fixed Thread Program
I have a fixed thread java program. It is implemented with Spring Integration and ActiveMQ.
Fixed thread here means that program has multiple threads but the count of them in runtime don't change.
Now ...
0
votes
0answers
168 views
Spring @ServiceActivator
Problem:
I need to start a batch job once a new file lands in a directory. I have written the job and its working fine through Junit. Now I need to use Spring's integration features and launch the ...
0
votes
2answers
243 views
How to Route a Message based on content using Spring Integration 2.0.5?
I started out using the si-xml:xpath-router but I ran into a roadblock. Am I using correct router but wrong implementation? If I'm using the incorrect router, which one should I be using, i.e. ...
0
votes
1answer
239 views
Spring Integration: Content based router with default output channel?
I'd like use Spring Integration to implement a content based router that uses a default output channel if the expression value doesn't match any of the mappings. Here's my bean definition:
...
0
votes
2answers
319 views
Regex pattern for yesterday's date in format yyyymmdd
I'm working on a Spring Integration application using the file reader support. I'm trying to use a regex filter for picking up the file desired. The name of the file would look something like ...
0
votes
2answers
667 views
copy file using spring integration
how would you copy a file from one place to another using spring integration. in my case i want to copy a file outside the war to inside the war. here is the code snippet i am thinking about:
...
0
votes
0answers
868 views
JMS & Spring Integration, removing the dependency on having a ActiveMQ instance
I recently set up some logging to AcitveMQ as a fire and forget service so that the application can just send a message to an "ActivityLoggingChannel" and not have to deal with the cross cutting ...
0
votes
1answer
262 views
Apache Jax-RS breaks spring-integration-mail
I'm trying to write some code that reads email and provides restful web services.
I have a simple test file that reads messages from gmail (over pop). However, it seems that when I add ...
0
votes
2answers
1k views
How can a HttpClient be configured for basic - authentification?
I found this sequence to set up basic authentication here:
HttpClient client = new HttpClient();
client.getState().setCredentials(
new AuthScope("www.domain.com", 443, "realm"),
new ...
0
votes
1answer
142 views
@Header annotation not working as expected
I am working on a spring integration project (1.0.2) and can't get the @Header annotation to work.
Here's my service activator:
@Component
public class MyTransformer {
...
0
votes
1answer
2k views
Java Event Processing Framework
I'm looking for a lightweight framework that builds on top of the Process Manager pattern:
http://www.eaipatterns.com/ProcessManager.html
I'm specifically interested in using this for doing event ...