-
1. Re: REST/Soap service for creating Camel routes
davsclaus Mar 12, 2012 4:08 AM (in response to dr8ball)Fuse IDE can currently edit any existing routes at runtime.
http://fusesource.com/products/fuse-ide/
... as well as delete any existing routes.
Adding a new route at runtime is on the roadmap.
I am not sure its exposed easily in the UI, but the underlying technologies makes it possible.
There is API on CamelContext to add/remove routes at runtime in Java and JMX.
You can expose those APIs using a REST/SOAP API yourself.
The JMX API is on ManagedCamelContext.
See this example for adding a new route at runtime
-
2. Re: REST/Soap service for creating Camel routes
dr8ball Mar 14, 2012 1:25 AM (in response to davsclaus)What about camel-web?
I found these related to camel-web not being distributed with ActiveMQ anymore:
https://issues.apache.org/jira/browse/AMQ-3491
https://issues.apache.org/jira/browse/AMQ-3329
Are the licensing issues fixed? I noticed that 3329 says that they reverted to an older version due to size, but I cannot find it in the latest ActiveMQ releases.
-
3. Re: REST/Soap service for creating Camel routes
davsclaus Mar 14, 2012 3:44 AM (in response to dr8ball)I think camel web is removed from the AMQ distribution. You would have to manually install it 'somehow', we do not have any instructions for that at Apache.
Camel web console is not recommended to be used for production usage. Its a developer tool, not a production management tool.