Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Component / ArtifactId / URI

Description

Bean / camel-core

Code Block
none
none
bean:beanName[?<options>]

Uses the Bean Binding to bind message exchanges to beans in the Registry. Is also used for exposing and invoking Plain Old Java Objects (POJOs).

Class / camel-core

Code Block
none
none
class:className[?<options>]

Uses the Bean Binding to bind message exchanges to beans based on the class name. Is also used for exposing and invoking POJOs.

Context / camel-context

Code Block
none
none
[context:]camelContextId:localEndpointName[?<options>]

Used to refer to endpoints within a separate CamelContext to provide a simple black box composition approach so that routes can be combined into a CamelContext and then used as a black box component inside other routes in other CamelContext.

Data Format / camel-core

Code Block
none
none
dataformat:name:<marshal|unmarshal>[?<options>]

For working with Data Formats as if it was a regular Component supporting Endpoints and URIs.

Exec / camel-exec

Code Block
none
none
exec://executable[?<options>]

For executing system commands.

Language / camel-core

Code Block
none
none
language://languageName[:script][?<options>]

Executes Languages scripts.

Printer / camel-printer

Code Block
none
none
lpr://hostName[:port]/printerPath[?<options>]

The printer component facilitates Facilitates creation of printer endpoints to local, remote and wireless printers. The endpoints provide the ability to print camel directed payloads when utilized on camel routes.

Properties / camel-core

Code Block
none
none
properties://key[?<options>]

Facilitates using property placeholders directly in endpoint URI definitions.

Ref / camel-core

Code Block
none
none
ref:name

Component for lookup of existing endpoints bound in the Registry.

...

Component / ArtifactId / URI

Description

Direct / camel-core

Code Block
none
none
direct:someName[?<options>]

Synchronous call to another endpoint from same CamelContext.

Direct-VM / camel-core

Code Block
none
none
direct-vm:someName[?<options>]

Synchronous call to another endpoint in another CamelContext running in the same Java virtual machine (JVM).

Disruptor / camel-disruptor

Code Block
none
none
disruptor:someName[?<option>]

Provides asynchronous SEDA behavior much as the standard SEDA Component, but utilizes a Disruptor instead of a BlockingQueue.

Disruptor VM / camel-disruptor

Code Block
none
none
disruptor-vm:someName[?<option>]

Provides asynchronous SEDA behavior much as the standard SEDA Component, but utilizes a Disruptor instead of a BlockingQueue. The buffers of the disrupter-vm Same as Disruptor, but the buffers of the Disrupter VMm endpoints also provides support for communication across CamelContexts instances so you can use this mechanism to communicate across web applications.

SEDA / camel-core

Code Block
none
none
seda:someName[?<options>]

Asynchronous call to another endpoint in the same Camel Context; staged event-driven architecture (SEDA).

VM / camel-core

Code Block
none
none
vm:queueName[?<options>]

Asynchronous call to another endpoint in the same JVM.

...

Component / ArtifactId / URI

Description

JBI / servicemix-camel in org.apache.servicemix

Code Block
none
none
jbi:serviceName

For Java Business Integration (JBI) integration such as working with Apache ServiceMix.

NMR / apache-servicemix-nmr in org.apache.servicemix.nmr

Code Block
none
none
nmr://serviceName

Integration with the Normalized Message Router BUS bus in Apache ServiceMix.

Vert 4.x. Vertx / camel-vertx

Code Block
none
none
vertx:eventBusName

Working with the vertx Vert.x event bus.

Feeds

Component / ArtifactId / URI

Description

Atom / camel-atom

Code Block
none
none
atom:atomUri[?<options>]

Working with Apache Abdera for atom integration, such as consuming an atom feed.

RSS / camel-rss

Code Block
none
none
rss:uri[?<options>]

Working with ROME for RSS integration, such as consuming an RSS feed.

...

Component / ArtifactId / URI

Description

File / camel-core

Code Block
none
none
file://nameOfFileOrDirectory[?<options>]

Sending messages to a file or polling a file or directory.

Flatpack / camel-flatpack

Code Block
none
none
flatpack:[fixed|delim]:configFile[?<options>]

Processing fixed width or delimited files or messages using the FlatPack library.

FTP / camel-ftp

Code Block
none
none
ftp:contextPath[?<options>]

Sending and receiving files over File Transfer Protocol (FTP).

FTPS / camel-ftp

Code Block
none
none
ftps://[username@]hostName[:port]/directoryName[?<options>]

Sending and receiving files over FTP Secure (TLS and SSL).

HDFS / camel-hdfs

Code Block
none
none
hdfs://hostName[:port][/path][?<options>]

For reading/writing from/to an Hadoop Distributed File System (HDFS) filesystem.

JSch / camel-jsch

Code Block
none
none
scp://hostName[:port]/destination[?<options>]

Support for the scp protocol using the Client API of the Java Secure Channel (JSch) project.

SFTP / camel-ftp

Code Block
none
none
sftp://[username@]hostName[:port]/directoryName[?<options>]

Sending and receiving files over FTP Secure (FTP and SSH).

Stream / camel-stream

Code Block
none
none
stream:<in|out|err|file|header|url>[?<options>]

Read Reading or write to an input/output/error/file stream rather like unix pipes writing to a stream.

Google

Component / ArtifactId / URI

Description

GAuth / camel-gae

Code Block
none
none
gauth://name[?<options>]

Used by web applications to implement an OAuth consumer.

GHttp / camel-gae

Code Block
none
none
ghttp:contextPath[?<options>]

Provides connectivity to the URL fetch service of Google App Engine but can also be used to receive messages from servlets.

GLogin / camel-gae

Code Block
none
none
glogin://hostName[:port][?<options>]

Used by Camel applications outside Google App Engine (GAE) for programmatic login to GAE applications.

GTask / camel-gae

Code Block
none
none
gtask://queueName[?<options>]

Supports asynchronous message processing on Google App Engine by using the task queueing service as message queue.

GMail / camel-gae

Code Block
none
none
gmail://user@g[oogle]mail.com[?<options>]

Supports sending of emails via the mail service of Google App Engine.

Google Guava EventBus / camel-guava-eventbus

Code Block
none
none
guava-eventbus:busName[?<options>]

The Google Guava EventBus allows publish-subscribe style communication between components without requiring the components to explicitly register with one another (and thus be aware of each other). This component provides integration bridge between Camel and Google Guava EventBus infrastructure.

...

Component / ArtifactId / URI

Description

AHC / camel-ahc

Code Block
none
none
ahc:http[s]://hostName[:port][/resourceUri][?<options>]

To call external HTTP services using Async Http Client.

Cometd / camel-cometd

Code Block
none
none
cometd://hostName:port/channelName[?<options>]

HTTP-based event routing bus used to deliver messages using the jetty cometd Jetty Cometd implementation of the bayeux protocol Bayeux Protocol.

HTTP / camel-http

Code Block
none
none
http:hostName[:port][/resourceUri][?<options>]

For calling out to external HTTP servers using Apache HTTP Client 3.x.

HTTP4 / camel-http4

Code Block
none
none
http4:hostName[:port][/resourceUri][?<options>]

For calling out to external HTTP servers using Apache HTTP Client 4.x.

Jetty / camel-jetty

Code Block
none
none
jetty:hostName[:port][/resourceUri][?<options>]

For exposing services over HTTP.

Servlet / camel-servlet

Code Block
none
none
servlet:relativePath[?<options>]

For exposing services over HTTP through the Servlet which is deployed into the Web container.

...

Java Message Service

Component / ArtifactId / URI

Description

ActiveMQ / activemq-camel in org.apache.activemq

Code Block
none
none
activemq:[topic:]destinationName

For JMS Messaging with Apache ActiveMQ

ActiveMQ Journal / activemq-core

Code Block
none
none
activemq.journal:filesystemDirectory

Uses ActiveMQ's fast disk journaling implementation to store message bodies in a rolling log file

JMS / camel-jms

Code Block
none
none
jms:[queue:|topic:]destinationName[?<options>]

Working with JMS provider.

RabbitMQ / camel-rabbitmq

Code Block
none
none
rabbitmq://hostname[:port]/exchangeName[?<options>]

Component for integrating For JMS Messaging with RabbitMQ.

SJMS / camel-sjms

Code Block
none
none
sjms:[queue:|topic:]destinationName[?<options>]

From the ground upwards implementation of a JMS client.

Stomp / camel-stomp

Code Block
none
none
stomp:queue:destinationName[?<options>]

For communicating with Stomp compliant message brokers, like Apache ActiveMQ or ActiveMQ Apollo.

ZeroMQ / camel-zeromq in camel-extra.

Code Block
none
none
zeromq:<tcp|ipc>://hostName:port

The ZeroMQ component allows you to consumer or produce messages using ZeroMQ.

...

Component / ArtifactId / URI

Description

LDAP / camel-ldap

Code Block
none
none
ldap:hostName[:port][?<options>]

Performing searches on Lightweight Directory Access Protocol (LDAP servers (<scope> must be one of object|onelevel|subtree)) servers.

Spring LDAP / camel-spring-ldap

Code Block
none
none
spring-ldap:springLdapTemplateBean[?<options>]

Camel wrapper for Spring LDAP. Spring LDAP is a Java library for simplifying LDAP operations, based on the pattern of Spring's JdbcTemplate.

...

Component / ArtifactId / URI

Description

POP3 / camel-mail

Code Block
none
none
pop3://[username@]hostName port][?<options>]

Receiving email using Post Office Protocol (POP3) and JavaMail.

POP3S / camel-mail

Code Block
none
none
pop3s://[username@]hostName port][?<options>]

Receiving email using secured POP3 and JavaMail.

SMTP / camel-mail

Code Block
none
none
smtp://[username@]hostName[:port][?<options>]

Sending email using Simple Mail Transfer Protocol (SMTP) (SMTP) and JavaMail.

SMTPS / camel-mail

Code Block
none
none
smtps://[username@]hostName[:port][?<options>]

Sending email using secured SMTP and JavaMail.

IMAP / camel-mail

Code Block
none
none
imap://[username@]hostName[:port][?<options>]

Receiving email using Internet Message Access Protocol (IMAP).

IMAPS / camel-mail

Code Block
none
none
imaps://[username@]hostName[:port][?<options>]

Receiving email using secured IMAP.

...

Component / ArtifactId / URI

Description

AMQP / camel-amqp

Code Block
none
none
amqp:[queue:|topic:]destinationName[?<options>]

For Messaging with the Advanced Message Queuing Protocol (AMQP).

Esper / camel-esper in camel-extra

Code Block
none
none
esper:name:name[?<options>]

Working with the Esper Library for Event Stream Processing.

JavaSpace / camel-javaspace

Code Block
none
none
javaspace:jini://hostName[?<options>]

Sending and receiving messages through JavaSpace.

JT/400 / camel-jt400

Code Block
none
none
jt400://user:pwd@system/<path_to_dtaq>[?<options>]

For integrating with data queues on an AS/400 (i.e., System i, IBM i, i5, etc.) systems.

Kestrel / camel-kestrel

Code Block
none
none
kestrel://[addresslist/]queueName[?<options>]

For producing to or consuming from Kestrel queues.

MQTT / camel-mqtt

Code Block
none
none
mqtt:name[?<options>]

Component for communicating with MQ Telemetry Transport (MQTT) machine-to-machine (M2M) message brokers.

SIP / camel-sip

Code Block
none
none
sip://user@hostName[:port][?<options>]

Publish/Subscribe communication capability using the Session Initiation Protocol (SIP) protocol.

SIPS / camel-sip

Code Block
none
none
sips://user@hostName[:port][?<options>]

Publish/Subscribe communication capability using the secured Session Initiation Protocol (SIP) protocol.

SMPP / camel-smpp

Code Block
none
none
smpp://[username@]hostName[:port][?<options>]

To send and receive SMS using Short Messaging Service Center using the JSMPP library.

SMPPS / camel-smpp

Code Block
none
none
smpps://[username@]hostName[:port][?<options>]

To send and receive secured SMS using Short Messaging Service Center using the JSMPP library.

Quickfix / camel-quickfix

Code Block
none
none
quickfix:configFile[?<options>]

Implementation of the QuickFix for Java engine which allow to send/receive FIX messages.

...

HL7 / camel-hl7

Code Block
none
none
mina2:tcp://hostName[:port][?<options>]

For working with the HL7 MLLP protocol and the HL7 model using the HAPI library.

MINA / camel-mina

Code Block
none
none
mina:<tcp|udp|vm>:hostName[:port][?<options>]

Working with Apache Multipurpose Infrastructure for Network Applications (MINA) 1.x. Transmission Control Protocol (TCP), User Datagram Protocol (UDP) and Virtual Machine (VM) protocol are supported.

MINA2 / camel-mina2

Code Block
none
none
mina2:<tcp|udp|vm>:hostName[:port][?<options>]

Working with Apache MINA 2.x. Transmission Control Protocol (TCP), User Datagram Protocol (UDP) and Virtual Machine (VM) protocol are supported.

Netty / camel-netty

Code Block
none
none
netty:<tcp|udp>//hostName[:port][?<options>]

Working with TCP and UDP protocols using Java NIO based capabilities offered by the Netty project.

Netty HTTP / camel-netty-http

Code Block
none
none
netty-http:http:[port]/contextPath[?<options>]

Netty HTTP server and client using the Netty project.

...

OSGi

Component / ArtifactId / URI

Description

EventAdmin / camel-eventadmin

Code Block
none
none
eventadmin:topic[?<options>]

Receiving OSGi EventAdmin events.

Pax Logging / camel-paxlogging

Code Block
none
none
paxlogging:appender

Receiving Pax-Logging events in OSGi.

...

Component / ArtifactId / URI

Description

CouchDB / camel-couchdb

Code Block
none
none
couchdb:hostName[:port]/database[?<options>]

To integrate with Apache CouchDB.

Db4o / camel-db4o in camel-extra

Code Block
none
none
db4o://className

For using a db4o datastore as a queue via the db4o (database for objects) library.

EJB / camel-ejb

Code Block
none
none
ejb:ejbName[?<options>]

Uses the Bean Binding to bind message exchanges to Enterprise Java Beans (EJBs). It works like the Bean component but just for accessing EJBs. Supports EJB 3.0 onwards.

HBase / camel-hbase

Code Block
none
none
hbase://table[?<options>]

For reading/writing from/to an HBase store (Hadoop database).

Hibernate / camel-hibernate in camel-extra

Code Block
none
none
hibernate://entityName[?<options>]

For using a database as a queue via the Hibernate library.

iBATIS / camel-ibatis

Code Block
none
none
ibatis://statementName[?<options>]

Performs a query, poll, insert, update or delete in a relational database using Apache iBATIS.

JDBC / camel-jdbc

Code Block
none
none
jdbc:dataSourceName[?<options>]

For performing Java Database Connectivity (JDBC) queries and operations.

JPA / camel-jpa

Code Block
none
none
jpa://entityName[?<options>]

For using a database as a queue via the Java Persistence API (JPA) specification for working with OpenJPA, Hibernate or TopLink.

Krati / camel-krati

Code Block
none
none
krati://datastorePath[?<options>]

For producing to or consuming to Krati datastores.

MongoDB / camel-mongodb

Code Block
none
none
mongodb:connectionBean[?<options>]

Interacts with MongoDB databases and collections. Offers producer endpoints to perform CRUD-style operations and more against databases and collections, as well as consumer endpoints to listen on collections and dispatch objects to Camel routes.

MyBatis / camel-mybatis

Code Block
none
none
mybatis://statementName[?<options>]

Performs a query, poll, insert, update or delete in a relational database using MyBatis.

SQL / camel-sql

Code Block
none
none
sql:queryCommand[?<options>]

Performing Structured Query Language (SQL) queries using JDBC.

Spring Neo4j / camel-spring-neo4j in camel-extra

Code Block
none
none
spring-neo4j:http://hostName[:port]/database[?options]

Component for producing to Neo4j datastore using the Spring Data Neo4j library.

Platform

...

Support

Component / ArtifactId / URI

Description

Activiti / activiti-camel

Code Block
none
none
activiti:camelProcess:serviceTask

For working with Activiti, a light-weight workflow and Business Process Management (BPM) platform which supports BPMN 2.

APNS / camel-apns

Code Block
none
none
apns:<notify|consumer>[?<options>]

For sending notifications to Apple iOS devices.

Salesforce / camel-salesforce

Code Block
none
none
salesforce:topic[?<options>]

To integrate with Salesforce.

SAP NetWeaver / camel-sap-netweaver

Code Block
none
none
sap-netweaver:hostName[:port][?<options>]

To integrate with SAP NetWeaver Gateway.

...

Component / ArtifactId / URI

Description

Avro / camel-avro

Code Block
none
none
avro:[transport]:[hostName]:[port][/messageName][?<options>]

Working with Apache Avro for data serialization.

jclouds Jclouds / camel-jclouds

Code Block
none
none
jclouds:<blobstore|compute>:[provider id][?<options>]

For interacting with cloud compute & blobstore service via jclouds.

JCIFS / camel-jcifs in camel-extra

Code Block
none
none
smb://userName@hostName/shareName[?<options>]

This component provides access to remote file systems over the CIFS/SMB networking protocol by using the JCIFS library.

RMI / camel-rmi

Code Block
none
none
rmi://hostName[:port][?<options>]

Working with remote method invocation Remote Method Invocation (RMI).

SSH component / camel-ssh

Code Block
none
none
ssh:[username[:password]@]hostName[:port][?<options>]

For sending commands to a SSH server.

Search Engines

Component / ArtifactId / URI

Description

ElasticSearch / camel-elasticsearch

Code Block
none
none
elasticsearch://clusterName[?<options>]

For interfacing with an ElasticSearch server.

Lucene / camel-lucene

Code Block
none
none
lucene:searcherName:<insert|query>[?<options>]

Uses Apache Lucene to perform Java-based indexing and full text based searches using advanced analysis/tokenization capabilities.

SOLR / camel-solr

Code Block
none
none
solr://hostName[:port]/solr[?<options>]

Uses the Solrj client API to interface with an Apache Lucene Solr server.

...

Component / ArtifactId / URI

Description

Cache / camel-cache

Code Block
none
none
cache://cacheName[?<options>]

The cache component facilitates creation of caching endpoints and processors using EHCache as the cache implementation.

Geocoder / camel-geocoder

Code Block
none
none
geocoder:<address|latlng:latitude,longitude>[?<options>]

Supports looking up geocoders for an address, or reverse lookup geocoders from an address.

Hazelcast / camel-hazelcast

Code Block
none
none
hazelcast://[type]:cachename[?<options>]

Hazelcast is a data grid entirely implemented in Java (single jar). This component supports supporting map, multimap, sedaSEDA, queue, set, atomic number and simple cluster supportclusters.

RCode / camel-rcode in camel-extra

Code Block
none
none
rcode://host[:port]/operation[?options]

Uses Rserve to integrate Camel with the statistics environment R.

Routebox / camel-routebox

Code Block
none
none
routebox:routeBoxName[?<options>]

Facilitates the creation of specialized endpoints that offer encapsulation and a strategy/map based indirection service to a collection of camel routes hosted in an automatically created or user injected camel context.

Weather / camel-weather

Code Block
none
none
weather://name[?<options>]

Polls the weather information from Open Weather Map.

...

Component / ArtifactId / URI

Description

Spring Event / camel-spring

Code Block
none
none
spring-event://default

Working with Spring ApplicationEventsApplication Events.

Spring Batch / camel-spring-batch

Code Block
none
none
spring-batch:jobName[?<options>]

To bridge Camel and Spring Batch.

Spring Integration / camel-spring-integration

Code Block
none
none
spring-integration:defaultChannelName[?<options>]

The bridge component of Camel and Spring Integration.

Spring Redis / camel-spring-redis

Code Block
none
none
spring-redis://hostName:port[?<options>]

Component for consuming and producing from a Redis. key-value storeRedis.

Templates

Component / ArtifactId / URI

Description

FreeMarker / camel-freemarker

Code Block
none
none
freemarker:templateName[?<options>]

Generates a response using a FreeMarker template.

Mustache / camel-mustache

Code Block
none
none
mustache:templateName[?<options>]

Generates a response using a Mustache template.

MVEL / camel-mvel

Code Block
none
none
mvel:templateName[?<options>]

Generates a response using an MVEL template.

Scalate / scalate-camel in org.fusesource.scalate

Code Block
none
none
scalate:templateName

Uses the given Scalate template to transform the message.

StringTemplate / camel-stringtemplate

Code Block
none
none
string-template:templateName[?<options>]

Generates a response using a String Template.

...

Component / ArtifactId / URI

Description

CXF / camel-cxf

Code Block
none
none
cxf:<bean:cxfEndpoint|//someAddress>[?<options>]

Working with Apache CXF for web services integration.

CXF Bean / camel-cxf

Code Block
none
none
cxfbean:serviceBeanRef[?<options>]

Proceess the exchange using a JAX-WS or JAX-RS annotated bean from the registry. Requires less configuration than the above CXF. Component

CXFRS / camel-cxf

Code Block
none
none
cxfrs:<bean:rsEndpoint|//someAddress>[?<options>]

Working with Apache CXF for REST RESTful services integration.

Restlet / camel-restlet

Code Block
none
none
restlet:restletUrl[?<options>]

Component for consuming and producing Restful resources using Restlet.

Spring Web Services / camel-spring-ws

Code Block
none
none
spring-ws:[mapping-type:]someAddress[?<options>]

Client-side support for accessing web services, and server-side support for creating your own contract-first web services using Spring Web Services.

Websocket / camel-websocket

Code Block
none
none
websocket://hostname[:port][/resourceUri][?<options>]

Communicating with Websocket clients.

...

Component / ArtifactId / URI

Description

Bean Validation / camel-bean-validator

Code Block
none
none
bean-validator:something[?<options>]

Validates the payload of a message using the Java Validation API (JSR 303 and Java API for XML Processing (JAXP) Validation) and its reference implementation Hibernate Validator). Hibernate Validator. is the reference implementation.

FOP / camel-fop

Code Block
none
none
fop:outputFormat[?<options>]

Renders the message into different output formats using Formatting Objects Processor (FOP), which is driven by XSL formatting objects (XSL-FO).

MSV / camel-msv

Code Block
none
none
msv:someLocalOrRemoteResource[?<options>]

Validates the payload of a message using the MSV Library.

RNC / camel-jing

Code Block
none
none
rnc:/relativeOrAbsoluteUri[?<options>]

Validates the payload of a message using RelaxNG Compact Syntax.

RNG / camel-jing

Code Block
none
none
rng:/relativeOrAbsoluteUri[?<options>]

Validates the payload of a message using RelaxNG.

StAX / camel-stax

Code Block
none
none
stax:(contentHandlerClassName|#myHandler)

Process messages through a Simple API for XML (SAX) ContentHandler.

XQuery / camel-saxon

Code Block
none
none
xquery:someXQueryResource

Generates a response using an XQuery template.

XSLT / camel-core

Code Block
none
none
xslt:templateName[?<options>]

Generates a response using a Extensible Stylesheet Language Transformations (XSLT) template.

Validation / camel-core

Code Block
none
none
validation:someLocalOrRemoteResource[?<options>]

Validates the payload of a message using XML Schema and Java API for XML Processing (JAXP) Validation.