Category: Career
-
对于银联的直联商户,流程如下: 1、刷卡信息(包括磁道和密码)由POS机具受理后通过收单机构送往银联的收单系统。 2、银联收单系统将报文通过银联核心交换平台送到信用卡的发卡银行,根据交易指令,在发卡银行的对应的卡片账户进行扣款。 3、银联核心交换系统收到扣款成功的返回后,将交易结果原路返回到POS终端上。 4、当天晚上11点,清算信息开始批量处理。 5、T+1日,各行在人行的头寸账户根据银联的清算文件(指令)将资金进行划拨,即交易资金从信用卡的发卡银行转移到商户的收单银行。 6、收单银行将资金转入商户的具体清算账户(也可以由银联直接转入)。 就扮演的角色而言,有持卡人、商户、收单机构(为商户提供服务的银行或机构)、转接清算机构(银联、VISA等卡组织)、发卡机构(信用卡银行) 简单通俗的说就是三步。 1:消费者刷工行信用卡100元,商户绑定的建行储蓄卡。 2:通过银联结算,工行向建行转入100元。 3:扣除百分之0•78的手续费,商户第二个工作日实际收到99.22元。 工行建行银联三家手续费分成是7:2:1 MasterCard flow: 第一步:顾客用mastercard支付顾客从一个商户购买商品或服务。 第二步:支付过程被授权商户的终端系统获取顾客账户信息,并且将其安全传送给收单行。 第三步:交易被提交。商户的收单行请求mastercard从顾客发卡行获取一个授权。第四步:请求授权。MasterCard将交易提交给发卡行,请求授权。第五步:返回授权。发卡行将该交易授权,并将结果返回给商户。 第六步:商户支付。发卡行将款项给商户收单行,商户收单行将这笔资金存入商户账户。
-
Different type of google storage: cloud storage: object cloud SQL: relational sql cloud spanner: scale globally cloud dataStore: NoSQL cloud BigTable: NoSQL cloud BigQuery: data warehouse
-
Things to pickup Google Cloud Platform training coursera certification google certification python java new version BigData related apache hadoop Docker Zookeeper
-
网站的服务再一次搬家, 从最开始的heroku, 到singaporehost, 现在到了google cloud. 域名在godaddy, 因为google domain 还不支持新加坡。 但愿以后可以。
-
我非常激动的一天,早上看课,下午交reflections 的时候,Mrs lee就和我讲通过了。我激动了一晚上还睡不着!终于两个多月的努力没有白费!
-
https://tiptopsecurity.com/how-does-https-work-rsa-encryption-explained/
-
MT1xx: Customer Payments & Cheques MT2xx: Financial Institution Transfers http://tradesamaritan.com/world-trade/products/mt103-single-customer-credit-transfer
-
This is a table of swift message. MT MT Name Purpose 101 Request For Transfer Requests to debit a customer’s account held at the receiver or at another institution. 102 Multiple Customer Credit Transfer Conveys multiple payment instructions between financial institutions. 102 STP 103 Single Customer Credit Transfer Instructs a funds transfer. 103 STP 103…
-
Mule is a lightweight java-based enterprise service bus and integration platform – allows to integrate with JMS, Web Service, JDBC, HTTP etc. Deployment: Access the directory and folder in which downloaded Mule. For example, type: cd /Users/myname/Downloads/mule-standalone-3.8.0/ Start Mule. For example, type: ./bin/mule Clustering: Create a file named mule-cluster.properties inside the node’s $MULE_HOME/.mule directory. mule.cluster.nodes=192.168.10.21,192.168.10.22,192.168.10.23 mule.cluster.multicastenabled=false mule.clusterId=<Cluster_ID> mule.clusterNodeId=<Cluster_Node_ID>
-
Thread: Ways to create a thread: 1. Implements Runnable interface class MyThread implements Runnable { public void run() { System.out.println(“concurrent thread started running..”); } } class MyThreadDemo { public static void main( String args[] ) { MyThread mt = new MyThread(); Thread t = new Thread(mt); t.start(); //have to call start method, otherwise, it will…