Murtuza Chhil
Murtuza Chhil
https://github.com/jpos/jPOS/blob/866254a44f1652977d2f607c8bc9e49fc21cfeff/jpos/src/main/java/org/jpos/iso/ISOMsg.java#L523 It would be nice to add a comment here, something to the effect ``` /* If you want the bitmap dumped in the log, change the condition from (i...
Jmeter with a ISO8583 sampler that uses jpos 2.1.4 I initially logged this at https://github.com/tilln/jmeter-iso8583/issues/24 but seems to be a jpos issue. ``` java.util.ConcurrentModificationException: null at java.util.TreeMap$PrivateEntryIterator.nextEntry(TreeMap.java:1211) ~[?:1.8.0_152] at java.util.TreeMap$KeyIterator.next(TreeMap.java:1265)...
Diff before commit http://screencast.com/t/S07t37fZx Modified the jpos framework to support ISO message logging to enbale pci compliant logging via configuration of the packager itself. An additional optional attribute called "display"is...
**Change** https://github.com/jpos/jPOS-EE/blob/1f857edcd47f1330daf14c4efb9e530ddf7bfcda/modules/status/src/main/resources/org/jpos/ee/status/Status.hbm.xml#L21 and https://github.com/jpos/jPOS-EE/blob/1f857edcd47f1330daf14c4efb9e530ddf7bfcda/modules/status/src/main/resources/org/jpos/ee/status/StatusTag.hbm.xml#L21 **from** ``` ``` **to** ``` ```
At times its possible trigger doesn't fire (quartz calls it mis-fire)and we need to log it else we may just not know when a job isn't performed. Mis-fire handling instructions...
I propose implementing the TriggerListener for the QuartzAdaptor. In the methods we can log info like when the trigger will fire again on trigger fire e.g. ``` @Override public void...
https://github.com/jpos/jPOS-EE/blob/a4684899b49fad4312ec1d9e37a255fc3aeaa4f9/modules/qrest/src/main/java/org/jpos/qrest/ValidateParams.java#L178-L190 return validParam(ctx, entry, value); should be changed to the following to return false only if the method returns false, else continue in the for loop ``` if (!validParam(ctx, entry,...
I am looking into bootstapping a client from a servers channel handler. If I have Server1 - serverhandler1 - serverhandler2 - Bootstrap a client1 connected to Server2 - ClientHandler1 -...
The following takes quite a few seconds to instantiatie class io.netty.channel.socket.nio.NioServerSocketChannel ``` Thread [main] (Suspended) AbstractBootstrap$BootstrapChannelFactory.newChannel() line: 445 ServerBootstrap(AbstractBootstrap).initAndRegister() line: 298 ServerBootstrap(AbstractBootstrap).doBind(SocketAddress) line: 273 ServerBootstrap(AbstractBootstrap).bind() line: 237 EchoServer.start() line: 41...
https://github.com/jpos/jPOS/blob/775bdc981c7641a90de9edf0b7807d29d38a79ef/jpos/src/main/java/org/jpos/util/ThroughputControl.java#L72 * **Inner Part:** `Math.max(periodInMillis[i]/10, 500L)` This part says: "Calculate 10% of the period, but if that's less than 500, use 500 instead." The result of this inner calculation will...