Murtuza Chhil
Murtuza Chhil
```java System.out.println(ISOUtil.protect("B4000340000000504^John/Doe ^22251110000123000")); ``` Output ``` B40003_______0504^John/Doe ^_________________ ``` John/Doe is not protected. Change https://github.com/jpos/jPOS/blob/master/jpos/src/main/java/org/jpos/iso/ISOUtil.java#L929-L938 ``` try { //Addresses Track1 Truncation int charCount = s.replaceAll("[^\\^]", "").length(); if (charCount == 2...
From jpos google group https://groups.google.com/g/jpos-users/c/sa8LIIg4ZNQ/m/fFdIxt7rCwAJ ``` java -cp bcprov-jdk18on-172.jar -jar /opt/jPOS/jpos/build/install/jpos/jpos-2.1.8-ST-q2.jar -c "smconsole -jce org.bouncycastle.jce.provider.BouncyCastleProvider -lmk lmk.key IK 128 ZPK E61BCE2AF5508A0E8705BC05AE0BC68B 128 ZMK D48177CDD2ED9E43BB607D9BEE21B17F E7472E" I was getting below error,...
[https://github.com/jpos/jPOS-EE/blob/98e346bdbef9e682ae9dc71becc1a5bf6706a684/modules/qrest/src/main/java/org/jpos/qrest/RestServer.java#L166-L169](https://github.com/jpos/jPOS-EE/blob/98e346bdbef9e682ae9dc71becc1a5bf6706a684/modules/qrest/src/main/java/org/jpos/qrest/RestServer.java#L166-L169) Currently, the timeout is hard coded to 60000L, can we make the timeout configurable? Since the routes can use different Txn Mgrs, a timeout per route would be good...
[https://github.com/jpos/jPOS-EE/blob/master/modules/qrest/src/main/java/org/jpos/qrest/SendResponse.java#L49-L50](https://github.com/jpos/jPOS-EE/blob/master/modules/qrest/src/main/java/org/jpos/qrest/SendResponse.java#L49-L50) I have a participant that takes a lot of time. LongRunningParticpant This `LongRunningParticpant` is placed after the SendResponse participant in the txn mgr. But since the response is only...
I see the changelog https://github.com/jpos/jPOS-EE/wiki/ChangeLog#jpos-ee-229----released-2023-12-23 has logback upgraded to 1.4.2 https://github.com/jpos/jPOS-EE/commit/230766b4 This wont work if java 8 is being used for building (I had run into this issue when I...
If the `logName` is like `xyx/a.log` and the xyz folder does not exist a FileNotFound exception is thrown and since the log file is not there it gets lost. https://github.com/jpos/jPOS/blob/master/jpos/src/main/java/org/jpos/util/RotateLogListener.java#L154-L161...
https://github.com/jpos/jPOS/blob/main/doc/src/asciidoc/ch05/ssl_channels.adoc Should additional configuration that the socket factory can have be documented? https://github.com/jpos/jPOS/blob/main/jpos/src/main/java/org/jpos/iso/GenericSSLSocketFactory.java#L350-L360
FSDMsgX revisited. Some code cleanup and bug fixes and more test cases added. Old test cases still work , new test cases added for testing more functionality.