Re: Is ThreadModel really useful?

2006-12-08 Thread Trustin Lee
On 12/8/06, Michael Bauroth [EMAIL PROTECTED] wrote: Hi, in different tests I found out an temporary optimal solution for my demands. It looks like: (using SimpleAllocator, HeapBuffer at the moment) mAcceptor = new SocketAcceptor( 2, Executors.newCachedThreadPool() );

Appending the branch name to Eclipse .project and .classpath files generated by maven-eclipse-plugin.

2006-12-08 Thread Trustin Lee
Hi, I wrote a simple shell script that helps people who works with multiple branches of one project in Eclipse. We can use a separate workspace for each branch, but it's somewhat cumbersome. I tested the script in a various project settings such as a complex multiproject. Here's the page that

Multicasting

2006-12-08 Thread michael . t . keenan
I'm new to Mina. I'm working on an application that will need Multicasting support. It looks like there is some interest in implementing it last year in DIRMINA-23. Is there still interest? It appears no work as been done since it isn't assigned. ---BeginMessage--- On Dec 7, 2006, at 9:45 PM,

Re: To keep direct buffer support or not

2006-12-08 Thread Jeanfrancois Arcand
Hi Trustin, Trustin Lee wrote: Hi, In the recent discussion ( http://www.nabble.com/Is-MINA-ByteBuffer-pool-of-dubious-value--tf2652301.html#a7401135), we agreed on removing acquire() / release() methods and pooling stuff. I think it's a great idea, but what do we do now with direct

SSLFilter and SSL session reuse

2006-12-08 Thread Wolter Eldering
Hi, I noticed that the SSLFilter will create a new SSL session for every new connection. As far as I can see this is caused by the way the SSLEngine is created in the SSLHandler class. SSLHandler.java 114 :sslEngine = ctx.createSSLEngine(); There are two factory