The code: public static void main(String[] args) throws Exception { CamelContext context = new DefaultCamelContext(); context.addRoutes(new RouteBuilder() { public void configure() { from("stream:in?promptMessage=Enter something: ").marshal().gzip().to("stream:out"); } }); context.start(); Thread.sleep(60000); context.stop(); }
When I input text, there is no output. Why? -- View this message in context: http://camel.465427.n5.nabble.com/help-base64-no-echo-tp5735131.html Sent from the Camel - Users mailing list archive at Nabble.com.