Is it possible to combine remoting by proxy
(http://camel.apache.org/spring-remoting.html) with asynchronous
request/reply (http://camel.apache.org/async.html) to achieve some sort
of equivalent to EJB 3.1 @Asynchronous invocations?
E.g.
@Stateless
@Remote(CalculatorService.class)
public class CalculatorServiceImpl implements CalculatorService {
@Asynchronous
public Future<Integer> add(int a, int b) {
// ...
}
}
If so, which transports are supported (JMS, HTTP, ...)? If not, is
something like this on the Camel roadmap at all?
Best regards,
Harald