|
MINA has been edited by Claus Ibsen (Aug 25, 2008). Change summary: CAMEL-847 MINA ComponentThe mina: component is a transport for working with Apache MINA URI formatmina:tcp://hostname[:port] mina:udp://hostname[:port] mina:multicast://hostname[:port] mina:vm://hostname[:port} From Camel 1.3 onwards you can specify a codec in the Registry using the codec option. If you are using TCP and no codec is specified then the textline flag is used to determine if text line based codec or object serialization should be used instead. By default the object serialization is used.
Default behavior changedIn Camel 1.5 the sync option has changed its default value from false to true, as we felt it was confusing for end-users when they used Mina to call remote servers and camel wouldn't wait for the response. SamplesIn this sample we let Camel expose a service that listen for TCP connections on port 6200. We use the textline codec meaning that we use the \n marker to indicate end-of-data. In out route we create the mina in the from to create the consumer that listen on port 6200: from("mina:tcp://localhost:6200?textline=true").to("mock:result");
As the sample is part of an unit test we test it by sending some data on port 6200 to it. Notice that we must append the \n character at the end to indicate end-of-data. This sample is a bit a typically as its async and we do not return an response. MockEndpoint mock = getMockEndpoint("mock:result"); mock.expectedBodiesReceived("Hello World"); template.sendBody("mina:tcp://localhost:6200?textline=true", "Hello World"); assertMockEndpointsSatisifed(); In the next sample we have a more common use-case where we expose a TCP service on port 6201 also using the textline codec. However this time we want to return a response so we add the sync=true option on the consumer. from("mina:tcp://localhost:6201?textline=true&sync=true").process(new Processor() { public void process(Exchange exchange) throws Exception { String body = exchange.getIn().getBody(String.class); exchange.getOut().setBody("Bye " + body); } }); Then we test it by sending some data and retrieving the response using the template.requestBody() method. As we know the response is a String we cast it to String and can assert that the response is in fact something we have dynamically set in our processor code logic. String response = (String)template.sendBody("mina:tcp://localhost:6201?textline=true&sync=true", "World"); assertEquals("Bye World", response); See Also |
Unsubscribe or edit your notifications preferences
