Vojtěch Krása

Results 329 comments of Vojtěch Krása

PR: https://github.com/krasa/krasa-jaxb-tools/pull/43 I'll have to find some time for that, looks awesome

Is there any documentation on how to use that?

Something must be resolved... https://github.com/krasa/krasa-jaxb-tools/issues/29#issuecomment-166723714

Relates to https://github.com/krasa/StringManipulation/issues/165

I implemented a proxy simply by: ``` int sequenceNumber = pduRequest.getSequenceNumber(); pduRequest.removeSequenceNumber(); pduRequest.removeCommandLength(); response = forward(pduRequest); response.removeCommandLength(); response.setSequenceNumber(sequenceNumber); ``` Cloning would be nice for parallel broadcasting - if that's what...

I am currently building a more complete client for perftests (with DR, periodic logging, configurable execution time - everything I've ever needed), ideas and suggestions welcomed. https://github.com/krasa/cloudhopper-smpp/blob/perftest-netty4/src/test/java/com/cloudhopper/smpp/demo/perftest/PerformanceClientMain2.java

No, not unless someone puts it into optional data.

It looks like a netty bug to me. I will dig deeper if you do not have a time.

testcase: ``` public class Netty4Deadlock { private static final Logger logger = LoggerFactory.getLogger(Netty4Deadlock.class); public static void main(String[] args) throws UnrecoverablePduException, SmppChannelException, InterruptedException, SmppTimeoutException { DefaultChannelGroup channels = new DefaultChannelGroup(GlobalEventExecutor.INSTANCE); Bootstrap...