Re: trying to implement rendezvous

2009-03-11 Thread Neil Rutherford
With this approach: from(tcp).process(controlMessage).to("direct:submsg"); from("direct:submsg").split().parallelProcessing().to(client socket).end(); How does the threading work? Will a new thread be spawned for each new request into the tcp endpoint and will that thread then spawn a new thread

trying to implement rendezvous

2009-03-10 Thread Neil Rutherford
hi, I've been tasked with doing a proof of concept project using Camel, the goal is to implement a message switching server. The switch needs to do the following: - receive XML messages via TCP socket - these messages are made up of smaller messages, so the switch will need to split them into s