Hello! I use Camel HL7 component. And I've a problem with below scenario (Camel 2.1.0):
from("mina:tcp://0.0.0.0:5800?sync=true&codec=#hl7MLLPCodec").unmarshal().ghl7().to(XXXXXXX) Scenario I: Create connection send HL7 message A to my route Release connection. Create connection: send HL7 message B to my route Release connection. Scenario II: Create connection: send HL7 message A to my route send HL7 message B to my route Release connection. Scenario I success, but scenario II fail. >From log, I found that in Scenario II the first message is handled successfully, but the second message failed. It is because that when message A received, the content in Body is message A, but when message B received, the content in Body is message A+ message B not message B. Is there any options to configure it or I should split the message by myself? -- View this message in context: http://camel.465427.n5.nabble.com/HL7-component-release-connection-problem-tp3378827p3378827.html Sent from the Camel - Users mailing list archive at Nabble.com.