Project

General

Profile

Actions

Deployment Guide - qiwi-billManagement » History » Revision 8

« Previous | Revision 8/16 (diff) | Next »
Soh Keong, 06/14/2012 09:37 AM


Deployment Guide - qiwi-billManagement

Steps-By-Steps:
  1. checkout the qiwi-billManagement project into Eclipse
  2. upload application.properties to /data/qiwi-provider/application.properties (\\cwyrnd2-server\src\sohkeong\QIWI\Qiwi_billManagement_Properties)
  3. Jar file (\\cwyrnd2-server\src\sohkeong\QIWI\Qiwi_billManagement_Jar)
  4. By calling below methods will get the result code.
main.java.com.ecosway.service.IShopServerService service = new main.java.com.ecosway.service.impl.IShopServerServiceImpl();
* Create Bill
int result = service.createBill(Connection conn, String user, double amount,
            String comment, String transaction, String transactionType,
            int shopperRefNo, String currency, String lifetime, int alarm,
            boolean create);

               > > > > > > > > > > OR < < < < < < < < < < 

int result = service.createBill(Connection conn, String user, double amount,
            String comment, String transaction, String transactionType,
            int shopperRefNo, String currency, String lifetime, int alarm,
            boolean create, boolean split, double maxAmount);

* Cancel Bill
int result = service.cancelBill(String transaction);
* Create Bill Payed Amount
int result = service.cancelBillPayedAmount(String nbill, double amount);

Development Server:

http://192.168.2.68:8080/qiwi-billManagementTest/

Updated by Soh Keong over 12 years ago · 8 revisions