--
--
jPOS is licensed under AGPL - free for community usage for your open-source project. Licenses are also available for commercial usage. Please support jPOS, contact: sa...@jpos.org
---
You received this message because you are subscribed to the Google Groups "jPOS Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jpos-users+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jpos-users/78e3a710-066e-4a8e-ac66-ba9ada7b4b20n%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jpos-users/CAAgSK%3DmeGr9pEoLaFXdSrNOBg90rjXfOyOaHgwFW82PZYxUNog%40mail.gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jpos-users/CAGAYud%2BaBbwfphU0YoXpOO7EEV7DO05zy5LNQuhXdp0U4C3FKQ%40mail.gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jpos-users/CALK1SyxXA%3D2mKrz-dUvUMiTX1j37dYbz6cYQNsAzOsNDCoAn-Q%40mail.gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jpos-users/CAGAYudJFmT5QdU2B7Bxnd9obYYZmfAN1mbNBc11Yn4KO%2BTFR1Q%40mail.gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jpos-users/9dc03098-704e-45c5-a822-c71bf4273dc0n%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jpos-users/CALK1Syz%2B%3D%2BpkSFPDLipJOFmwZoR6iX%3D224Zi56rpL%2BQ0yivRFw%40mail.gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jpos-users/CAP-ytRHT9VHi2nTBJOjJj75WBH6XPuYkzpsywGecz5Hy-4ADtQ%40mail.gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jpos-users/CALK1Sywg7mzNb3NvTTdVsCxS062XDGKOWCLQt5n_dC5aVL-Cng%40mail.gmail.com.
It would be easier to just set the field with a number instead of doing the i+ math. Its difficult to see which fields are set and you are overwriting fields that you previously set with a new value.
Mux uses field 41+11 (default matching condition) to match requests to responses. If the matching fields don’t match the response ends up in unhandled queue (unsolicited response). The unhandled is part of configuration of a mux. JPOS’ unhandled reads the value from the unhandled queue and dumps it.
<mux class="org.jpos.q2.iso.QMUX" logger="Q2" name="banknet14-mux">
...
<unhandled>xyz-unhandled</unhandled>
...
Unhandled handler deploy
<xyz-unhandled-message class='org.jpos.ee.LogUnhandled' logger='Q2'>
<property name='unhandled-queue' value='xyz-unhandled' /> <!-- value is the same as the value configured in the mux -->
</xyz-unhandled-message>
-chhil