Category "apache-camel"

Soap Request with Apache Camel

i have a wsdl file hosted on a site (which i can't share), and i want to invoke a soap request through apache-camel framework. I created a maven project, and us

How do I set custom tracer in ModelCamelContext?

I am implementing simple camel application using camel 3.14.0. I start using modelcamelcontext. But there is below exception during setting custom tracer. 2022-

Apache Camel SFTP get file content null

Java Code @Component @RequiredArgsConstructor public class WireInboundFileListener extends RouteBuilder { private final JwtWireTokenService jwtWireTokenSe

Bindy skipping empty csv files

I built a camel route that unmarshals a csv file using camel bindy and writes the contents to a database. This works perfectly apart from when the file is empty

How much effort should I put into a apache Camel route versus just writing the logic in a Processor?

I've used Camel to do some message processing, to take a message from a source, massage it a bit, and send it on to some target. But I'm trying to use it for a

Apache Camel: Catch the authentication failed error

I have a route to monitor the email by Apache Camel. If the username or password were changed. I want to show a message to the user in monitoring system about t

Can you listen for SpringCamelContext status?

Using EventNotifierSupport, I can listen for CamelContextStartedEvent. However, I need to add one more root to the context, after all the other routes have alre

Retrieve clob data using apache camel

I am polling clob column using apache camel as below. <route> <from uri="timer://timer1?period=2m" /> <setBody>

How to call multiple routes sequentially without messing with body

I have something like the following: .from("direct:start") .to("direct:a") .to("direct:b") .to("direct:c"); The issue I have is direct:a modifies t

Clustered Apache Camel to run Jira routes

Background: We have written a Spring Boot Apache Camel based ingestion service which runs Camel routes that ingest data from shared directory (Excel files) and

How to pass parameter to a namedQuery from a camel route?

I have an application running camel on spring-boot. I want to pass a parameter retriesAllowed to a namedQuery from a camel route. namedQuery: @NamedQuery(name =

How to send response back from server to client using Apache camel netty , spring boot

I have two modules as client and server. I am currently sending echo messages from client to server using netty server routes from(netty:tcp://0.0.0.0:21005). N

Listing AWS S3 bucket content from Springboot With Apache Camel

I have a sprintboot project running v2.5.4 which works fine. I have access to S3 and im able to list the content of a bucket i have created. So i wanted to expe

How get specific file from directory using apache camel in java?

I have an scenario, a directory contains various file named pattern filehhmm like: hh=hours mm=minutes dir: file1200.txt file1210.txt file1220.txt otherfile1.tx

Uploading to an S3 bucket with Apache Camel how do I enable server side encryption with S3 managed keys?

I'm using Apache Camel with the aws2-s3 module to access an S3 bucket. I'm using endpoint-dsl to program my routes. I can connect to and read from the bucket, b

replacement for camel cxfbean

we are currently struggling with updating our legacy service (non spring, jee + deltaspike, weld) and it's dependencies. We try to upgrade from camel 2.16.2 to

Camel SFTP with Quartz scheduler: prevent concurrent execution, reject task if busy

Camel 3.11 Spring Boot 2.5 Java 11 I have a dynamic Camel routes that fetches files from an SFTP server. There is one route per SFTP user. The routes are schedu

Camel POJO to PAYLOAD

I'm handling a web service with camel xml ?dataFormat=POJO on the from But a front end dev is shoving some data in a field now, and I need to check if it's popu

JAXB unmarshalling - reader cannot be null

I want to retrieve some data from JMS, filter them and send them to REST server. When I unmarshal those data I get an error: java.lang.IllegalArgumentException

Run one Apache Camel route at a time

My product has an ingestion service written using Java which runs Apache Camel routes. There are multiple ingestion service instances running on different VMs.