Tagged Questions

7
votes
2answers
85 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
158 views

Spring Integration Images for use in Visio

Does anyone know where some Spring style integration images can be found for use in Visio - just a stencil or where one could possible download the images used in the Spring Integration designer GUI ...
4
votes
4answers
3k views

Spring Integration as embedded alternative to standalone ESB

Does anybody has an experience with Spring Integration project as embedded ESB? I'm highly interesting in such use cases as: Reading files from directory on schedule basis Getting data from JDBC ...
3
votes
1answer
293 views

Spring Integration: Split message again after using aggregate?

In my Spring Integration powered project I have a splitter and payload-router for sending my data to various transformers. The new "transformed" objects are then passed back to an aggregator and ...
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
103 views

Refreshing Spring context when JMS message delivered

I'd like to refresh my application context when system receives JMS message. In order to do it, I set up Spring Integration jms:message-driven-channel-adapter which forwards message to service ...
2
votes
1answer
242 views

Spring integration : replace xml configured bean property dynamically?

I'm trying to do a ftp poller with the help of Spring integration and the poller works great with the xml configuration. Now I would like to be able to dynamically set some properties of the poller ...
2
votes
1answer
105 views

Can I enable Spring Integration message history inside a chain?

If I add this to my context: <integration:message-history/> I get a message header populated with the names (ids) of all the named components through which the message has passed. But if I ...
2
votes
2answers
578 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
225 views

Programatically bridge a QueueChannel to a MessageChannel in Spring

I'm attempting to wire a queue to the front of a MessageChannel, and I need to do so programatically so it can be done at run time in response to an osgi:listener being triggered. So far I've got: ...
2
votes
2answers
281 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
2answers
2k views

How to deploy a Spring Integration app in Tomcat?

I've gone through the "Spring Integration in 10 minutes" tutorial for setting up a basic Spring Integration application. I'd like to deploy this application in Tomcat and have the input channel live ...
2
votes
5answers
3k views

Spring Integration: Hooking web services to a FIFO queue

I'm still struggling with Spring Integration- here's my scenario: A web service gets a request from client A web service puts the request onto a queue A queue consumer processes the messages FIFO ...
1
vote
1answer
26 views

Spring integration durable pub sub channel

Is it possible to configure durable pub sub channel in spring integration 2.1?
1
vote
1answer
90 views

Spring integration - configuring DefaultMessageListenerContainer to resolve muliple destinations

I have a requirement to configure a DefaultMessageListenerContainer to resolve multiple destination topics. I don't want to instanciate multiple containers and I was wondering how to configure this or ...
1
vote
0answers
47 views

How do I get rid of this warning in my Spring Bean Configuration file in SpringSource ToolSuite (Eclipse)

I have the following small file to reproduce the warning: <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" ...
1
vote
1answer
300 views

Spring integeration - error-channel handling issues

I am new in Spring Integeration.I have one requirement Using spring integeration read a txt file (from Source folder) do some validation if validation is success -write into sucess file (in ...
1
vote
1answer
381 views

Spring Integration and Tomcat solution vs Websphere MDB solution: functionality?

We're looking at the choice between implementing an enterprise integration solution in either: Spring/Spring Integration/JMS/Spring Web MVC Websphere Application Server/MDB/Spring What are the ...
1
vote
4answers
624 views

Should I use Spring integration or Spring social to interact with twitter and Facebook?

I'll soon start a new project in Grails in which I have to interact with Facebook and Twitter (and possibly myspace too). I was wondering if someone already tried to do this through Spring ...
1
vote
1answer
546 views

what versions to use when using Spring-ws spring-integration and spring-security altogether

I'm using Spring-integration 2.0.0 and wanted to secure the calls to the web services exposed by Spring integration. So I used the secured channels and it works fine so far using Spring-core 3.0.5 and ...
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
336 views

Spring MVC 3.0: Avoiding explicit JAXBElement<> wrapper in method arg

I have the following method and want to avoid having to explicitly show the JAXBElement<> syntax. Is there some sort of annotation that would allow the method to appear to accept raw ...
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
0answers
9 views

Spring Expression Language (SpEL) for Array Method Parameters

I have a Spring Integration project where I am trying to call a method on a bean that takes a String object and Class object as parameters. The class object I want to pass to it is Long[].class but I ...
0
votes
1answer
67 views

Asynchronously processing the attached files in an email (Spring Mail Integration)

If I have a Spring app with a mail server inbound channel, what is the best way to process every file in every email (I poll approx. every 1 min, and fetch 1 email with multiple attachments). ...
0
votes
0answers
64 views

Spring integration: difficulty with transaction between 2 activators

I have this use case. First chain: <int:chain input-channel="inserimentoCanaleActivate" output-channel="inserimentoCanalePreRouting"> <int:service-activator ...
0
votes
0answers
166 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
0answers
110 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
0answers
51 views

Log time taken for sync JMS call

In a spring integration project I have a outbound gateway to send and receive messages synchronously. I would like to log the time taken for such an operation. <jms:outbound-gateway ...
0
votes
1answer
236 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
0answers
372 views

Spring integration file read issues

Sounds like spring integeration is amazing , I am new in Spring Integeration.I have one requirement Using spring integeration read a txt file (from Source folder) do some validation if ...
0
votes
2answers
318 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
665 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
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
867 views

Flex + Spring + BlazeDS + Glassfish + OpenMQ - How do you configure the web-application-config for OpenMQ?

I have the spring-flex-testdrive example (JMS chat application which uses a Topic to pub/sub messages) to work on Tomcat with ActiveMQ now I want to run this example on Glassfish with OpenMQ. This ...
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 ...