The first problem first. The log below does not conform to the XML schema below. The only 2 variables being shown are the 2 being set in the java code, though I've done a pack() test and the XML file is being used. Any tips?
The second problem relating to the replies. When a reply FSD message is received, the log usually shows it nice parsed etc at channel level. Though it is somewhat difficult to tell an FSD channel that the reply it is receiving will be conforming to this very unique very special format that is not used in any other reply message. Any suggestions on how I can get the reply to be correctly interpreted?
--
--
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 "jPOS Users" group.
Please see http://jpos.org/wiki/JPOS_Mailing_List_Readme_first
To post to this group, send email to jpos-...@googlegroups.com
To unsubscribe, send email to jpos-users+...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/jpos-users
Here's the linchpin of the approach: The QMUX key fields have to be named with their ISO equivalents. You can see below that we have two fields that equate directly to 41 and 11 (QMUX's default key - the TID and STAN respectively), so we named them as such in the XML structure. Anything you put in the mux key you need to tie in here.
The field that designates ‘tran-type’ we named as ‘0’ (not mandatory) so that we could note that it’s the MTI-like equivalent
We named the Response Code-like field “39” so as not to break some OLS.Switch (our jPOS-based implementation) internals on response logging and origin-side formatting of replies.
Is there a field that indicates a response to a corresponding request.
e.g. a field has a value of 'A ' indicating a request type of 'A' and a response comes back with a 'B'.
Then you could be your and probably have this as the key and individual schemas per key.
-chhil
Pieter--