开始使用jpos

时间:2014-12-07 05:33:40

标签: onlinebanking jpos

我正在创建一个新的付款应用程序。我所拥有的是客户端应用程序,用户选择价格,输入其身份验证信息,然后客户端创建和ISO 8583消息并将此数据发送到银行服务器。

根据我的研究,我可以使用jPOS来模拟银行服务器。实际上我需要一个服务器来获取iso消息并对它们做出响应,但我不知道如何使用jPOS进行此建议。

我在互联网上搜索过这个,但找不到任何能够清楚回答的资源。我的主要问题是,我是否需要使用jPOS创建应用程序来实现我的需求,或者只在服务器上安装jPOS就足以测试我的客户端应用程序了?

1 个答案:

答案 0 :(得分:2)

好了,请阅读jpos库文档,其草稿版本可在网站上找到,here

具体到您关于JPOS Server的问题,更好地实现您自己的服务器。 JPos提供了类ISOServer,例如以下bean在applicationContext.xml文件

中启动ISO服务器
<bean id="paymentServer" class="org.jpos.iso.ISOServer">
    <constructor-arg>
        <value>13000</value>
    </constructor-arg>
    <constructor-arg ref="paymentChannel" />
    <constructor-arg ref="paymentServerThreadPool" />
</bean>

<bean id="paymentChannel" class="org.jpos.iso.channel.ASCIIChannel">
    <constructor-arg ref="paymentPackager" />
</bean>

<bean id="paymentPackager" class="com.sample.payment.packager.PaymentPackager"/>

<bean id="paymentServerThreadPool" class="org.jpos.util.ThreadPool">
    <constructor-arg>
        <value>1</value>
    </constructor-arg>
    <constructor-arg>
        <value>100</value>
    </constructor-arg>
    <constructor-arg>
        <value>PaymentServer</value>
    </constructor-arg>
</bean>

<bean id="paymentProcessor" class="com.sample.processors.PaymentProcessor"  init-method="init"/>

以下课程实施打包器

public class PaymentPackager extends ISOBasePackager {

    protected ISOFieldPackager fld[] = {
            /* 0000 */ new IFB_NUMERIC  (  4, "Message Type Indicator", false), 
            /* 0001 */ new IFB_BITMAP   ( 16, "Bitmap"),    
            /* 0002 */ new IFB_LLLCHAR  (999, "Primary Account number"),    
            /* 0003 */ new IFB_NUMERIC  (  6, "Processing Code", true),
            /* 0004 */ new IFB_NUMERIC  ( 12, "Amount, Transaction", true),
            //.....
            /* 0063 */ new IFB_LLLCHAR  (999, "Reserved for national use"),
            /* 0064 */ new IFB_BINARY   ( 20, "Message authentication code field"),
            //.....     
            /* 0125 */ new IF_UNUSED    (),
            /* 0126 */ new IF_UNUSED    (),
            /* 0127 */ new IF_UNUSED    (),
            /* 0128 */ new IFB_BINARY   ( 20, "Message authentication code field"),
    };

    public PaymentPackager() {
        super();
        setFieldPackager(fld);      
    }

}

在应用程序入口点类中,您可以获取bean并使用如下附加通道侦听器

paymentServer.addISORequestListener(paymentProcessor);

以下是示例监听器

public class PaymentProcessor implements ISORequestListener {

    private static Logger log = LoggerFactory.getLogger(PaymentProcessor.class);

    public void init() {

        //do init
    }

    public boolean process (ISOSource source, ISOMsg m){

        log.debug(">PaymentProcessor.process");

        ISOMsg request = (ISOMsg) m.clone();
        ISOMsg response = new ISOMsg();

        //...
        //build your response
        //...

        source.send(response);
        return true;
    }
}

注意: 我还没有实现它,但是jpos提供了使用Q2实现服务器和客户端的新方法,你可以看到用于实现服务器的QServer类文档,我&# 39;我会尽快分享样本。

快乐编码:)