All Downloads are FREE. Search and download functionalities are using the official Maven repository.

undertowjs.camelRoutes.js Maven / Gradle / Ivy

There is a newer version: 12.0.0
Show newest version
$undertow
    .alias('camel', 'jndi:java:jboss/camel/context/undertowjs-context')
    .onGet("/greeting/{name}", {headers: {"content-type": "text/plain"}}, ['camel', function ($exchange, camel) {
        var name = $exchange.param('name');
        var producer = camel.createProducerTemplate();
        return producer.requestBody("direct:start", name);
    }]);




© 2015 - 2025 Weber Informatics LLC | Privacy Policy