Re: Continuous XML document processing

2008-12-04 Thread Emmanuel Lecharny
newToMina wrote: Ashish, That is correct. It is 5000 concurrent sessions. MINA can handle the load, no problem. Some tests have already been conducted on MINA 1 with 10 of thousands connected sessions. The communication is always going to be between 2 machine, our server and the 3rd party

Re: Continuous XML document processing

2008-12-04 Thread Ashish
That is correct. It is 5000 concurrent sessions. The communication is always going to be between 2 machine, our server and the 3rd party server acts as the client. Do I gain any performance gain if we use multiprocessor server with more memory? Any other suggestions to improve the performance

Re: Continuous XML document processing

2008-12-03 Thread newToMina
provide more insight on this approach? -- View this message in context: http://www.nabble.com/Continuous-XML-document-processing-tp20802789p20813796.html Sent from the Apache MINA User Forum mailing list archive at Nabble.com.

Re: Continuous XML document processing

2008-12-03 Thread newToMina
(new XmlMessage(getXml(1, true)+getXml(2, false))); // To send a single xml document xmlClient.sendRequest(new XmlMessage(getXml(1, true))); } } -- View this message in context: http://www.nabble.com/Continuous-XML-document-processing-tp20802789p20814518.html Sent from the Apache

Re: Continuous XML document processing

2008-12-03 Thread Emmanuel Lecharny
newToMina wrote: Thanks for the quick response Ashish... I don't have any control over the protocol. The root element is Message/Message. The communication is always between 2 machines. A 3rd party machine connects to our server and keeps sending xml documents (it could be one at a time or

Re: Continuous XML document processing

2008-12-03 Thread newToMina
Lécharny www.iktek.com directory.apache.org -- View this message in context: http://www.nabble.com/Continuous-XML-document-processing-tp20802789p20815766.html Sent from the Apache MINA User Forum mailing list archive at Nabble.com.

Re: Continuous XML document processing

2008-12-03 Thread Emmanuel Lecharny
newToMina wrote: Emmanuel Lecharny-3 wrote: What do you mean by 'simultaneous messages' ? I meant the system should be able to handle upto 5000 simultaneous customer scans. (maximum system load) Ok. It's more or less an architecture problem, not really a MINA issue. As soon as you have

Re: Continuous XML document processing

2008-12-03 Thread newToMina
://www.nabble.com/Continuous-XML-document-processing-tp20802789p20817940.html Sent from the Apache MINA User Forum mailing list archive at Nabble.com.

Continuous XML document processing

2008-12-02 Thread Ask Me
Hi Folks,   How can I process multiple xml documents written as part of one write operation?  This is where I am stuck now. When the decoder gets more than one xml document as part of an IoSession.doDecode (onceI modify the isValidMessage() to seperate xml documents) how can I process the