Fuse 6 is no longer supported
As of February 2025, Red Hat Fuse 6 is no longer supported. If you are using Fuse 6, please upgrade to Red Hat build of Apache Camel.Dieser Inhalt ist in der von Ihnen ausgewählten Sprache nicht verfügbar.
A.9. Static Recipient List
Overview Link kopierenLink in die Zwischenablage kopiert!
Figure A.6. Static Recipient List Pattern
Example ServiceMix EIP route Link kopierenLink in die Zwischenablage kopiert!
test:messageFilter
endpoint and to the test:trace4
endpoint.
Example A.16. ServiceMix EIP Static Recipient List
Equivalent Apache Camel XML route Link kopierenLink in die Zwischenablage kopiert!
Example A.17. Apache Camel Static Recipient List Using XML
<route> <from uri="jbi:endpoint:http://progress.com/demos/test/recipients/endpoint"/> <to uri="jbi:service:http://progress.com/demos/test/messageFilter"/> <to uri="jbi:service:http://progress.com/demos/test/trace4"/> </route>
<route>
<from uri="jbi:endpoint:http://progress.com/demos/test/recipients/endpoint"/>
<to uri="jbi:service:http://progress.com/demos/test/messageFilter"/>
<to uri="jbi:service:http://progress.com/demos/test/trace4"/>
</route>
Equivalent Apache Camel Java DSL route Link kopierenLink in die Zwischenablage kopiert!
Example A.18. Apache Camel Static Recipient List Using Java DSL
from("jbi:endpoint:http://progress.com/demos/test/recipients/endpoint"). to("jbi:service:http://progress.com/demos/test/messageFilter", "jbi:service:http://progress.com/demos/test/trace4");
from("jbi:endpoint:http://progress.com/demos/test/recipients/endpoint").
to("jbi:service:http://progress.com/demos/test/messageFilter", "jbi:service:http://progress.com/demos/test/trace4");