37
I Use This!
High Activity

News

Analyzed about 18 hours ago. based on code collected 2 days ago.
Posted about 13 years ago by [email protected] (trustin)
October 16, 2012 trustin commented on issue netty/netty#654 Thanks in advance!
Posted about 13 years ago by [email protected] (trustin)
October 16, 2012 trustin closed issue netty/netty#644 SslHandler defers channelActive event, confusing a user about the connection life cycle
Posted about 13 years ago by [email protected] (trustin)
October 16, 2012 trustin commented on issue netty/netty#644 Fix checked in. Thanks for reporting! :-)
Posted about 13 years ago by [email protected] (trustin)
October 16, 2012 trustin pushed to master at netty/netty trustin committed 951c49f [#644] SslHandler should not defer channelActive event - otherwise a user will have a misconception about the life cycle of the actual connection.
Posted about 13 years ago by [email protected] (fbettag)
October 15, 2012 fbettag opened issue netty/netty#655 PortUnificationServerHandler SSL Detection broken
Posted about 13 years ago by [email protected] (normanmaurer)
October 15, 2012 normanmaurer commented on issue netty/netty#654 @trustin maybe you could check this out :)
Posted about 13 years ago by [email protected] (fbettag)
October 15, 2012 fbettag opened issue netty/netty#654 ConcurrentModificationException
Posted about 13 years ago by fredericBregier
October 15, 2012 fredericBregier commented on issue netty/netty#652 I'm sorry but I didn't get it. I even tried to use the client again from the example from Netty Upload part by only sending the following: ... [More] bodyRequestEncoder.addBodyAttribute('getform', 'POST'); bodyRequestEncoder.addBodyAttribute('foo', 'fooval'); bodyRequestEncoder.addBodyAttribute('bar', 'barval'); bodyRequestEncoder.addBodyAttribute('Send', 'Send'); And I obtain in both POST and multipart POST the following: Standard POST: Is Chunked: false IsMultipart: false BODY Attribute: Attribute: Mixed: getform=POST BODY Attribute: Attribute: Mixed: foo=fooval BODY Attribute: Attribute: Mixed: bar=barval BODY Attribute: Attribute: Mixed: Send=Send Multipart POST: Is Chunked: false IsMultipart: true BODY Attribute: Attribute: Mixed: getform=POST BODY Attribute: Attribute: Mixed: foo=fooval BODY Attribute: Attribute: Mixed: bar=barval BODY Attribute: Attribute: Mixed: Send=Send So I do not see any wrong value such as false attribute name=foo for instance... Can you have a simple example that shows it because I can't find where is the issue? [Less]
Posted about 13 years ago by purplefox
October 15, 2012 purplefox commented on issue netty/netty#652 It's easy to reproduce using the Vert.x formupload module: https://github.com/vert-x/mod-formupload I've added code to screen out the extra attributes ... [More] as a workaround but if you remove it you will see what I mean https://github.com/vert-x/mod-formupload/blob/master/src/main/java/org/vertx/mods/formupload/MultipartRequest.java#L263 [Less]
Posted about 13 years ago by [email protected] (normanmaurer)
October 15, 2012 normanmaurer commented on issue netty/netty#650 @sublambda creating ServerBoostrap instances is still cheap.. What is not 'cheap' is the creation of ChannelFactories.