jboss-fuse / fuse

JBoss Fuse is an open source ESB with capabilities based on Apache Camel, Apache CXF, Apache ActiveMQ, Apache Karaf and Fabric8 in a single integrated distribution.
Apache License 2.0
136 stars 98 forks source link

How to write a connector? #416

Closed stephanrauh closed 7 years ago

stephanrauh commented 7 years ago

I'd like to use the JBoss Fuse ESB. The major part of our application connects to Fuse via Webservices (i.e. SOAP). However, we have a few devices speaking a different protocol (Modbus/TCP). I haven't found a third-party adapter. So I'd like to write it myself.

Where can I find the documentation about writing connectors? Is there an example source code?

Thanks in advance Stephan

apupier commented 7 years ago

Hello,

a ControlBus component is available in Camel: http://camel.apache.org/controlbus.html

Someone developed Jamod components: https://github.com/sworisbreathing/camel-jamod

If you want to write your own camel connector, please have a look to Camel documentation: http://camel.apache.org/writing-components.html

You can also have a look to Forge command:

Regards,

stephanrauh commented 7 years ago

Thanks!