onlinebanking

NHibernate Performance on an internet banking application

和自甴很熟 提交于 2019-12-13 15:22:24
问题 Currently we have a project to implement an Internet Banking site, and we are evaluating using Nhibernate on it. ¿Is NHibernate suitable for this kind of application, where performance is important and there will be a large quantity of users doing operations simultaneously? ¿Do you know any successfull stories of using NHibernate in this kind of environment? I think NHibernate is slow only when is used incorrectly, and I think we can use it with a lot of tweaking, best practices and common

migs (MasterCard Virtual Payment Client) integration php

女生的网名这么多〃 提交于 2019-12-03 12:59:47
问题 Can any body help me about how to integrate migs (MasterCard Virtual Payment Client) in a php website ! I have read the reference guide but it's unhelpful! 回答1: //This value submited to the MIGS PAYMENT GATEWAY $SECURE_SECRET = $signature; //value from migs payment gateway $accessCode = $accesscode;//value from migs payment gateway $merchantId = $merchantid;//value from migs payment gateway $paymentdata = array( "vpc_AccessCode" => $accessCode, "vpc_Amount" => ($amount*100),//our product

migs (MasterCard Virtual Payment Client) integration php

て烟熏妆下的殇ゞ 提交于 2019-12-03 03:23:45
Can any body help me about how to integrate migs (MasterCard Virtual Payment Client) in a php website ! I have read the reference guide but it's unhelpful! //This value submited to the MIGS PAYMENT GATEWAY $SECURE_SECRET = $signature; //value from migs payment gateway $accessCode = $accesscode;//value from migs payment gateway $merchantId = $merchantid;//value from migs payment gateway $paymentdata = array( "vpc_AccessCode" => $accessCode, "vpc_Amount" => ($amount*100),//our product price , must multipy by 100 "vpc_Command" => 'pay', "vpc_Locale" => 'en',// order id "vpc_MerchTxnRef" => random

Python in the enterprise: Pros and cons [closed]

烂漫一生 提交于 2019-12-03 02:02:07
问题 Closed . This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing this post. Closed 4 years ago . I have been exploring and developing an application in Python for mission critical work in the commercial banking arena. Banks are way conservative in selecting new applications. I need real proof of stability and others using. Have looked at the Python site but now I'm

Banking API/protocol [closed]

拟墨画扇 提交于 2019-12-03 01:53:46
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 3 years ago . Do any banks offer data feeds of personal accounts via any form of API? I'm essentially looking to check balances on accounts without logging into their website. I remember reading about a universal banking protocol at some point... and maybe mint.com uses it to access accounts? Does mint.com have a special

Python in the enterprise: Pros and cons [closed]

丶灬走出姿态 提交于 2019-12-02 15:38:09
I have been exploring and developing an application in Python for mission critical work in the commercial banking arena. Banks are way conservative in selecting new applications. I need real proof of stability and others using. Have looked at the Python site but now I'm hoping this crowd can tell me more. So far I don't have a development bank partner which I will need next stage, so I'm gathering proof and pitch info. All help and comments appreciated. Banca d'Italia (roughly the Italian equivalent of the Fed, except that, since the introduction of the Euro, all countries using euros as their

Banking API/protocol [closed]

穿精又带淫゛_ 提交于 2019-12-02 14:04:32
Do any banks offer data feeds of personal accounts via any form of API? I'm essentially looking to check balances on accounts without logging into their website. I remember reading about a universal banking protocol at some point... and maybe mint.com uses it to access accounts? Does mint.com have a special relationship with each bank, or can I leverage their method? Edit: For my requirements, I'm only interested in accessing my own financial data. user279521 Look up the Open Financial Exchange (OFX) format on the web. That (I believe) is a generic format for the banking industry. badbod99 API

Building a complete online payment gateway like Paypal [closed]

微笑、不失礼 提交于 2019-11-27 02:28:15
So this question isn't about integrating an existing payment gateway into my site. This is more of a architectural question. I want to build a system similar to Paypal. Now I understand that Paypal offers a lot of features under the roof and I can't implement all of them at once. I want to implement the core functionality of Paypal and other such services. So my question is (rather discussion is) around how would one go about building such a system. Some points to discuss: Handle payments through existing banks. I am guessing that I would need access to local bank protocols to get this. Allow

Building a complete online payment gateway like Paypal [closed]

China☆狼群 提交于 2019-11-26 10:04:17
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 2 years ago . So this question isn\'t about integrating an existing payment gateway into my site. This is more of a architectural question. I want to build a system similar to Paypal. Now I understand that Paypal offers a lot of features under the roof and I can\'t implement all of them at once