allow messages to be sent to an Endpoint over JMX
-------------------------------------------------
Key: CAMEL-862
URL: https://issues.apache.org/activemq/browse/CAMEL-862
Project: Apache Camel
Issue Type: Improvement
Components: jmx
Reporter: James Strachan
Fix For: 1.5.0
to support JMX and remote JMX we'll have to be careful.
Maybe we write a simple MXBean that lets us send a simple, concrete, String
based payload?
e.g. something kinda like this...
{code}
public class ExchangeMXBean {
private MessageMXBean in;
private MessageMXBean out;
...
}
public class MessageMXBean {
String body;
String actualBodyType;
Map<String,String> headers;
}
{code}
i.e. so over JMX (and remote JMX) we'd be able to send/receive Camel messages
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.