Search code examples
javaapache-camelwildfly-8

Overview of camel endpoints?


I have deployed my camel integration projects (WAR) on a JBoss Wildfly application server.

I was wondering if there is a way to see what endpoints are available and what the URL's are?

In a similiar way as i can log into the administration console under Wildfly and select web services to get an overview of what is deployed?

Thanks in advance for your help.


Solution

  • Yes, if you have JMX enabled on your camel context, then you can view a list of endpoints via jconsole, as you can see from:

    Camel JConsole

    JMX is on by default according to the camel site but if you've somehow disabled it, adding:

    <jmxAgent id="agent" disabled="false"/>
    

    to your <camelContext> element should be enough to re-enable it.