Questions tagged [spring-dsl]

Questions regarding the usage of the Spring Integration Java DSL (Domain Specific Language) extension

The Spring Integration JavaConfig and DSL extension provides a set of convenient Builders and a fluent API to configure Spring Integration message flows from Spring @Configuration classes.

See:

145 questions
0
votes
1 answer

Spring Integration - Load Balance across multiple TCP outbound gateways

I have a (legacy) TCP service that has multiple processes. Each process runs on the same host, but on a different port. The service is single threaded, so the way to increase throughput is to round-robin each request across each of the ports. I am…
Erin Drummond
  • 5,347
  • 6
  • 35
  • 41
0
votes
0 answers

How can I get a response from an Apache camel jetty request?

I am new to apache camel. I want to create a service bus (middle ware) using apache camel by making a jetty Post request and then get the response from the server. Here is what I've done
Joey
  • 11
  • 10
0
votes
1 answer

Spring Integration DSL | Jch Exception | Disconnecting from <> port 22

I am trying to upload a file to remote SFTP server. I created the outbound flow from the same @Configuration public class SftpIntegrationFlow { @Value("${report-uploader.reportingServer.remoteDirectory}") private String…
0
votes
2 answers

Spring Integration | Java DSL

I want to send a file to SFTP server. I have created a outbound flow for it @Bean public IntegrationFlow sftpOutboundFlow() { return IntegrationFlows .from("toSftpChannel") …
0
votes
1 answer

Camel:Spring-DSL:Multicats 'timeout' attribute from properties

I want to set timeout attribute in multicast tag from a external property file. I can use properties without issue with {{property.name}} syntax in uri,etc definitions. However below usage seems like not permitted. Any ideas how to work around /…
hsnkhrmn
  • 961
  • 7
  • 20
0
votes
1 answer

Camel content based routing with header in spring DSL issue

I am trying camel for some routing with Spring DSL. I am not able to get the message to the destinations. I know i am missing something please help me to figure out the issue. I have set the headers in deviceMessageRouteIdentifier as below …
0
votes
1 answer

Camel Spring DSL is not working as expected

Tried to create a very simple route to read from a FTP location using Java as well as Spring DSLs. The route created with Java DSL is working as expected. from("{{ftp.server}}").to("file:target/download").log( "Downloaded file…
kallada
  • 1,829
  • 4
  • 33
  • 64
0
votes
1 answer

Strange Behaiour with Camel + Groovy + Spring DSL

I have the following route: request.headers.id …
Klaus
  • 2,328
  • 5
  • 41
  • 62
0
votes
2 answers

Simple AggregationStrategy Apache Camel

I would like to know if Camel provides any standard aggregation strategies out-of-the-box. I have been researching but I have only be able to find some of the in the unit test. Those ones cannot be used from the actual code. I am trying to use it…
hveiga
  • 6,725
  • 7
  • 54
  • 78
-1
votes
1 answer

Spring Integration DSL FTP

I have Spring inbound for the FTP I am looking at the document https://docs.spring.io/spring-integration/reference/html/ftp.html If you happened to have one or more files sitting in the local-directory, it would process those files before it would…
1 2 3
9
10