Re: IoHandlerAdapter interacts with business logic class

2007-08-27 Thread Niklas Therning
mat wrote: Can someone tell me how your business logic class interacts with IoHandlerAdapter? By passing the references to each other? Somehow, I feel a little bit weird to do so. Any better solution? In my app my IoHandler implementation gets a reference (through an interface of course)

Re: Asynchronous Http Client donation

2007-08-27 Thread Mark
I have been moving things around, creating the 3 separate subprojects. Everything is compiling and seems to be in good shape. I posted a question to the list a couple days ago about javadocs at the class level and have not heard back. Maybe your email and mine will bump this thread and someone

Re: Asynchronous Http Client donation

2007-08-27 Thread Kevin Smeltzer
Is this a project for doing transfer through HTTP using Mina? If so it could be very valuable (to me anyways) :-D On 8/27/07, Mark [EMAIL PROTECTED] wrote: I have been moving things around, creating the 3 separate subprojects. Everything is compiling and seems to be in good shape. I posted a

Re: Asynchronous Http Client donation

2007-08-27 Thread Jeff Genender
Kevin Smeltzer wrote: Is this a project for doing transfer through HTTP using Mina? If so it could be very valuable (to me anyways) :-D Yep ;-) On 8/27/07, Mark [EMAIL PROTECTED] wrote: I have been moving things around, creating the 3 separate subprojects. Everything is compiling and

Re: Asynchronous Http Client donation

2007-08-27 Thread Mark
I am currently working on the HTTP client piece. Check back later in the day for an update. I will respond to this thread with further information. -- ..Cheers Mark On 8/27/07, Kevin Smeltzer [EMAIL PROTECTED] wrote: Nice! I'm in the latter stages ( or so I say ) of development of a

Re: DatagramConnector without connected UDP channel ?

2007-08-27 Thread Adam Fisk
One approach is to use an acceptor to listen on the *same local port* as the connector and to set the setReuseAddress option on both the connector and the acceptor. SetReuseAddress basically means set reuse local address, so binding to the same local address multiple times doesn't create an

Re: two processes listening on same port

2007-08-27 Thread Adam Fisk
Linux should do the same thing, and it's actually a very important feature. A lot of protocols rely on this behavior, such as both TCP and UDP NAT traversal. That said, I'm unclear why so many of the examples use setReuseAddress, although I think I remember Trustin saying it improved performance

Re: Asynchronous Http Client donation

2007-08-27 Thread Mark
OK. I have checked in mina-filter-codec-http, mina-protocol-client-http and mina-protocol-server-http into the trunk. There is still a lot of commenting that needs to be done, but at least the code in in the baseline and people can start working it. Please let me know what more we need from a

Re: Asynchronous Http Client donation

2007-08-27 Thread Mark
That works for me On 8/27/07, Jeff Genender [EMAIL PROTECTED] wrote: Excellent! Thanks. Should I just open Jiras and attach my patches? Thanks, Jeff Mark wrote: OK. I have checked in mina-filter-codec-http, mina-protocol-client-http and mina-protocol-server-http into the