public boolean sendSync(Map inMessageProperties, Object content) throws JBIException {
return sendSync(null, null, inMessageProperties, content);
}
public void send(EndpointResolver resolver, Map exchangeProperties, Map inMessageProperties, Object content) throws JBIException {
InOnly exchange = createInOnlyExchange(resolver);
populateMessage(exchange, exchangeProperties, inMessageProperties, content);
send(exchange);
}