Package jifx.commons.messages

Examples of jifx.commons.messages.FieldInfo


  public static void main(String[] args) {
    //IFXMessage message = (IFXMessage) new IFXPackager().unpack("<?xml version=\"1.0\" encoding=\"UTF-8\"?><IFX xmlns=\"http://sourceforge.net/ifx-framework/ifx  xmlns=\"http://sourceforge.net/ifx-framework/ifx\"><SignonRq Id=\"ID123456\"><SignonPswd><CustId><SPName>coco</SPName></CustId><CustPswd><CryptType>PLAIN</CryptType><Pswd>Liso</Pswd></CustPswd></SignonPswd><ClientDt>2020-12-31T23:59:59.000000-00:00</ClientDt><CustLangPref>English</CustLangPref><ClientApp><Org>Quicken Corporation</Org><Name>Quicken 2020 Deluxe</Name><Version>99.99</Version></ClientApp><EU.Cur>0</EU.Cur><SuppressEcho>1</SuppressEcho></SignonRq><BankSvcRq><RqUID>3a64839c-17ff-40c8-8747-33683bb728b7</RqUID><DebitAddRq><RqUID>3a64839c-17ff-40c8-8747-33683bb728b7</RqUID><MsgRqHdr><NetworkTrnInfo><NetworkOwner>ATM</NetworkOwner><TerminalId>22222</TerminalId><PostAddr><Addr1>7600 Leesburg Pike, Suite 430</Addr1><City>Falls Church</City><StateProv>VA</StateProv><PostalCode>22043</PostalCode><Country>US</Country></PostAddr></NetworkTrnInfo><ClientTerminalSeqId>100</ClientTerminalSeqId><MsgAuthCode><MacValue>977B9D6AFCCD7F9A304A480666066039</MacValue></MsgAuthCode></MsgRqHdr><DebitInfo><DebitAuthType>Withdrawal</DebitAuthType><CompositeCurAmt><CompositeCurAmtType>Debit</CompositeCurAmtType><CurAmt><Amt>100.00</Amt><CurCode>USD</CurCode></CurAmt></CompositeCurAmt><CardAcctId><CardMagData><MagData2>1234567890123456=0</MagData2></CardMagData><AcctType>DD     A</AcctType></CardAcctId></DebitInfo></DebitAddRq></BankSvcRq></IFX>");
    IFXMessage message = (IFXMessage) new IFXPackager().unpack(IFXMessageFactory.getIfxCert());
    MessageIDInfo multiplexerInfo = new MessageIDInfo();
    multiplexerInfo.add(new OperatorOr(new FieldInfo("BankSvcRq.DebitAddRq.MsgRqHdr.ClientTerminalSeqId"), new FieldInfo("BankSvcRs.DebitAddRs.MsgRqHdr.ClientTerminalSeqId")));
    multiplexerInfo.add(new OperatorOr(new FieldInfo("BankSvcRq.DebitAddRq.MsgRqHdr.NetworkTrnInfo.TerminalId"), new FieldInfo("BankSvcRs.DebitAddRs.MsgRqHdr.NetworkTrnInfo.TerminalId")));

    MessageIDInfo connector = new MessageIDInfo();
    connector.add(new FieldInfo("11"));
    connector.add(new FieldInfo("41"));

    Element element = null;
    Node node = null;
    String xml =
    "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"+
View Full Code Here

TOP

Related Classes of jifx.commons.messages.FieldInfo

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.