jreactive-8583 icon indicating copy to clipboard operation
jreactive-8583 copied to clipboard

Kotlin/Java Client & Server for ISO8583 & Netty

Results 43 jreactive-8583 issues
Sort by recently updated
recently updated
newest added

Hey @kpavlov, I just tried building from master and the grade wrapper file was broken. Just a simple fix.

The server only accepts limited requests due to blocking of listeners. The below code in abstractiso8583 connector decides the number: protected EventLoopGroup createWorkerEventLoopGroup() { return new NioEventLoopGroup(Runtime.getRuntime().availableProcessors()); } How can...

bug

Hi @kpavlov! I am starting a project that needs to parse messages that follow the ISO8583 format. In the README, there is an example of how to make a Server...

The `Iso8583Decoder` doesn't handle messages with header. The `parseMessage()` at line 29 in `Iso8583Decoder` final IsoMessage isoMessage = messageFactory.parseMessage(bytes, 0); Is called with second argument set to `0`. Shouldn't be...

Hi Pavlov, I'm getting an exception after 8010 response message as follow: `java.text.ParseException: ISO8583 MessageFactory has no parsing guide for message type 0820 [082082200000020000000400000000000000030118024102512900301]` If I add a 0820 template...

Hi Pavlov, I try to open a connection right before sending a message, but didn't find a way to get hold of a `Future` which will be completed, once the...

Hi! Using version **1.2.4**, I am getting the following error: io.netty.handler.codec.TooLongFrameException: Adjusted frame length exceeds 8192: 12596 - discarded Based on this question: https://github.com/kpavlov/jreactive-8583/issues/78, I tried to modify the maxFrameLength...

I am trying to make a new implementation of an ISO8583 (currently is builded on jpos) with a client requesting from a server. All this is based on an Spring...

It's possible to enable communications using protocols such as SSL / TLS ? Thanks

question

# JReactive-8583 Hi, I have a problem with my client, this does not go beyond step 16, I think that my problem is in my server, since the client connects...