DatagramConnector sessions

2007-09-29 Thread yz
Is there a way to send UDP packets via MINA without using the session abstraction imposed by DatagramConnector? Promiscuously sending to many distinct endpoints quickly exceeds the OS file descriptor limit. The downside to using a DatagramSocket directly is that I don't get to use things like

Re: DatagramConnector sessions

2007-09-29 Thread Trustin Lee
On 9/29/07, yz [EMAIL PROTECTED] wrote: Is there a way to send UDP packets via MINA without using the session abstraction imposed by DatagramConnector? Promiscuously sending to many distinct endpoints quickly exceeds the OS file descriptor limit. The downside to using a DatagramSocket

Re: [VOTE] Import AsyncWeb from Safehaus to MINA

2007-09-29 Thread Ersin Er
[X]: +1, import On 9/27/07, Trustin Lee [EMAIL PROTECTED] wrote: Hi, There has been enormous amount of requests about importing AsyncWeb under MINA PMC. I must admit that I was too lazy to deal with legal issues even after the proper software grant for AsyncWeb has been received. Now,

RE: poll: which logging framework are you using

2007-09-29 Thread 温少
[x] log4j 温少 [EMAIL PROTECTED] Date: Fri, 28 Sep 2007 23:43:22 +0200 From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: poll: which logging framework are you using [x] log4j with the intention to migrate asap to: [x] logback Maarten On 9/28/07, Maarten Bosteels [EMAIL PROTECTED]

RE: [VOTE] Release Apache MINA 1.0.6 and 1.1.3

2007-09-29 Thread 温少
[X]: +1, Release, very import feature : manual close connecotor!温少 [EMAIL PROTECTED] Date: Fri, 28 Sep 2007 22:50:46 +0200 From: [EMAIL PROTECTED] To: dev@mina.apache.org; [EMAIL PROTECTED] Subject: Re: [VOTE] Release Apache MINA 1.0.6 and 1.1.3 [X]: +1, Release. Maarten

[jira] Commented: (DIRMINA-249) exceptionCaught() should provide more information

2007-09-29 Thread Trustin Lee (JIRA)
[ https://issues.apache.org/jira/browse/DIRMINA-249?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12531268 ] Trustin Lee commented on DIRMINA-249: - One problem with introducing WriteException is that any existing

IoHandlerClass property in MdcInjectionFilter

2007-09-29 Thread Trustin Lee
Hi Maarten, What do you think about renaming 'IoHandlerClass' to 'handlerClass' or at least to 'ioHandlerClass'? Trustin -- what we call human nature is actually human habit -- http://gleamynode.net/ -- PGP Key ID: 0x0255ECA6

Re: poll: which logging framework are you using

2007-09-29 Thread Enrique Rodriguez
On 9/28/07, Maarten Bosteels [EMAIL PROTECTED] wrote: ... [ X ] log4j Enrique

[jira] Commented: (DIRMINA-249) exceptionCaught() should provide more information

2007-09-29 Thread Trustin Lee (JIRA)
[ https://issues.apache.org/jira/browse/DIRMINA-249?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12531278 ] Trustin Lee commented on DIRMINA-249: - I've just added WriteRequestFilter (in org.apache.mina.filter.util).

[jira] Closed: (DIRMINA-448) Allow Object keys for session attributes.

2007-09-29 Thread Trustin Lee (JIRA)
[ https://issues.apache.org/jira/browse/DIRMINA-448?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Trustin Lee closed DIRMINA-448. --- Resolution: Fixed Assignee: Trustin Lee Done. A piece of cake! :D Allow Object keys for

Re: IoHandlerClass property in MdcInjectionFilter

2007-09-29 Thread Maarten Bosteels
both options are fine for me. Maarten On 9/29/07, Trustin Lee [EMAIL PROTECTED] wrote: Hi Maarten, What do you think about renaming 'IoHandlerClass' to 'handlerClass' or at least to 'ioHandlerClass'? Trustin -- what we call human nature is actually human habit --

MdcInjectionFilter enhancement

2007-09-29 Thread Maarten Bosteels
Hi all, We should add a method for remving a property from the context: public static void removeProperty(IoSession session, String key) { if (key == null) { throw new NullPointerException(key should not be null); } Context context = getContext(session);