Re: Error adding ExecutorFilter in Spring

2007-09-14 Thread Decebal Suiu
Thanks Trustin, it's ok now. My spring config file looks like this (for example):

Re: Error adding ExecutorFilter in Spring

2007-09-13 Thread Trustin Lee
On 9/13/07, Decebal Suiu <[EMAIL PROTECTED]> wrote: > > It's works, thanks. It's strange that spring doesn't understand varargs. > Is it possible to have a setSessionConfig() method in SocketAcceptor? (for > IoC - now I use a factory in Spring) You don't need setSessionConfig() to set session prop

Re: Error adding ExecutorFilter in Spring

2007-09-13 Thread Decebal Suiu
It's works, thanks. It's strange that spring doesn't understand varargs. Is it possible to have a setSessionConfig() method in SocketAcceptor? (for IoC - now I use a factory in Spring) Maarten Bosteels-4 wrote: > > Please run svn up and let us know if the problem is fixed. > > Thanks > Maarten

Re: Error adding ExecutorFilter in Spring

2007-09-13 Thread Maarten Bosteels
Please run svn up and let us know if the problem is fixed. Thanks Maarten On 9/13/07, Maarten Bosteels <[EMAIL PROTECTED]> wrote: > > Hi Decebal, > > ExecutorFilter has no constructor that takes only an Executor > > and Spring doesn't understand that it could use this constructor: > > public Exec

Re: Error adding ExecutorFilter in Spring

2007-09-13 Thread Maarten Bosteels
Hi Decebal, ExecutorFilter has no constructor that takes only an Executor and Spring doesn't understand that it could use this constructor: public ExecutorFilter(Executor executor, IoEventType... eventTypes) I will add a constructor that takes only an Executor Maarten On 9/13/07, Decebal Sui