The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
3answers
55 views

Having trouble returning a variable java

public class Account { static int accountNum; static int nextAccountNum = 112200; static double balance; public static void main(String args[]) { Account checkingAccount = new ...
0
votes
1answer
67 views

How ca I change this class to make immutable methods?

I tried to read up on immutable methods but I still do not understand. I want to change the BankAccount class' methods to be immutable how can I do that? public class BankAccount { private double ...
1
vote
1answer
12 views

Having trouble showing an Account ID and balance in two textboxes

I can't seem to figure out how to display Account ID and Account Balance into a textbox after the selected index is changed in the listbox. I have a Customer class and a Checking account class(which ...
0
votes
0answers
28 views

Communication between banks and mobile wallets

I am doing a project based on mobile wallets. I am aware of how the payment works using the wallet as well as the user interface but i am not sure of what kind of information is passed between the ...
1
vote
1answer
27 views

Via Paypal API what call can I use to transfer from my paypal balance to my bank account

I would like to automate my paypal balance to my bank. Tired of having to go every weeks and click on the transfer to my bank. What API call can I use to transfer my paypal balance back to my linked ...
2
votes
3answers
86 views

Regex for BIC check

I wrote an regex for php function pregmatch which is like this: ^([a-zA-Z]){4}([a-zA-Z]){2}([0-9a-zA-Z]){2}([0-9a-zA-Z]{3})?$^ Now i need to check the consistency of an BIC string. Something is ...
-1
votes
1answer
21 views

Facebook Payments doesn't pay out to banks in my country [closed]

I live in Ukraine and there is no such country in the list of countries which Facebook can pay out to. So how do I can get payed? Thanks for your answers, sorry if this question has already been ...
0
votes
0answers
27 views

Magento 1.7 prepayment data

I have a problem with prepayment. If you choose this payment method, the payment data won't show up and in the confirmation mail the "payment" field is emtpy. On my local environment it works fine ...
0
votes
0answers
67 views

India Banking API to Process NEFT Payments

Is there a way to send payments from the bank account to all your customers automatically in India ? Suppose: Every customer has a unique id and all this bank details like name, account number and ...
0
votes
0answers
11 views

How to pay for facebook application

First of all, I'm sorry for my english is bad (pretty bad). There is a Facebook application now part of the report we look at the share appears within 2 months of 1382 the company was purchased credit ...
0
votes
0answers
55 views

Analyze memory access

I want to understand memory coalesced, burst and bank conflict for this cuda kernel: __global__ void kernel1D(float *In, float *out) { uint idx = threadIdx.x+blockIdx.x*16;//blockDim.x; float v = ...
-3
votes
1answer
23 views

Creating a purchasing service [closed]

My team and I are attempting to create a web based purchasing system that will allow you to purchase songs (like iTunes). How can we create a service that, A. Confirms that the number that is put ...
0
votes
0answers
27 views

Prefilled european bank transfer without html table

i have to implement a web service wizzard and i would like to prefill a printable bank transfer with our information(bank account, society's name, IBAN number,...). I could make it with a form and a ...
0
votes
0answers
115 views

Bank transfer instructions replaced with a default value when invoiced in Magento 1.7.0.2

I have setup a multiple number of stores and each store has a different bank transfer instruction. Initially when the order was placed, the bank transfer instructions displayed the store value only ...
0
votes
1answer
59 views

Multi teller model for hospital cashiers

I'm currently ddeveloping a hospital managment system. My application will have multi cashiers at the hospital who working 24/7, they collecting money from the patients & issuing a receipt voucher ...
0
votes
3answers
1k views

bank account client in java with multiple classes

I am trying to make a bank account program, but I cannot figure out how to get all my variables visible to every class that I have, or how to make the withdrawal and deposit methods of my code ...
1
vote
1answer
105 views

Multiple clients on apple itunes connect, different bank details? [closed]

I am a developer and create several apps for the app store, each for a different client. I don't want all their payments to come into my account. how can this be done in itunes connect? Someone ...
-1
votes
4answers
1k views

Parsing string to double - java

For a project I have a program that is like a bank. The "bank" reads in a file with accounts in it that look like this: Miller William 00001 891692 06 <----string that needs to be converted to ...
-1
votes
1answer
742 views

Bank Account Transfer Project Java

I'm doing a project in Java, and I'm stuck on part of it. I have the deposit function working in SavingsAccount class, but I can't seem to figure out how to call it in the engine class. For our ...
1
vote
1answer
262 views

Java Multi-threaded bank transfer, synchronization issues

I am attempting the multi-threaded bank transfer problem. However, I am having issues with correctly synchronizing the threads. Periodically after a thread performs a transfer between accounts it will ...
1
vote
2answers
363 views

Determine if generated date falls on a holiday (PHP)?

Does anyone know of an existing library or even a useful function that would allow a php script to check if a generated date clashes with a holiday, whether it be US, UK, AUS, or SAF holidays? If ...
8
votes
6answers
288 views

How to pay your non-Western users? [closed]

I have a question similar to this one, only that my question is focused on "non-Western" users (with this I refer to users outside of Western Europe and the US). I have to pay users of my website ...
2
votes
2answers
574 views

UK bank sort code javascript regular expression

I'm trying to create a regular expression in javascript for a UK bank sort code so that the user can input 6 digits, or 6 digits with a hyphen between pairs. For example "123456" or "12-34-56". Also ...
0
votes
0answers
67 views

Download file after login via SSL form

I need to write program that will log into bank account (via HTML form) and then will download some file which my program will work with. I want to automate the logon process, so that my user doesn't ...
0
votes
0answers
176 views

iOS Guidelines in Implementing Payment within App Outside of In-App Purchase

Our company wants to know if it's possible to implement payment outside of In-App Purchase within an iOS app i.e. doing bank transactions and payments for bank services using a customer's account in ...
5
votes
4answers
446 views

If float and double are not accurate, how do banks perform accurate calculations involving money?

Currently learning C++ and this has just occurred to me. I'm just curious about this as I'm about do develop a simple bank program. I'll be using double for calculating dollars/interest rate etc., ...
0
votes
1answer
206 views

How to get transfer confirmation from bank(by PHP)?

currently in progress making my first website, about selling something. But, i want the payments via offline. The first is direct payment and second is via bank transfer (to certain account, my ...
1
vote
1answer
98 views

is there a php library to proccess credit card information?

First, I've research this topic and many adjacent topics and know the risks with storing and processing credit card information. We have taken all the necessary steps to harden our servers and we're ...
2
votes
3answers
669 views

Java Bank Account Synchronization example. Fail to see how solution works

http://i.stack.imgur.com/D01ja.png So, I'm reading a pdf about synchronization that shows the above example problem. A bit later, the following is presented, presumably as a solution: class Account ...
0
votes
2answers
322 views

Save banking account data secure

I need to save banking account data in a web project. The project is asp.net mvc 3 and the database is MSSQL 2008 R2. But how should I do that secure? My solutions are: Solution: Encrypt the Data ...
1
vote
1answer
969 views

Payment between POS Terminal and Bank

I want to make program to talk between a Bank and POS Terminal Devices without using any third party tools. Let's assume that, currently, this program will only be used to talk with a specific bank ...
0
votes
0answers
139 views

Is there a way either functionally or through code to uncancel a canceled check? [closed]

We cut a check to a vendor. Vendor "lost" the check so we put a stop on it at the bank and canceled it in AX 2009. Vendor found the check, and our finance dept called the bank and they "un-stopped" ...
1
vote
1answer
185 views

Email bank account information from form

A client wants a registration form on their website which contains, among other fields, spaces for bank account information (including sort code and account number). The form will not submit the data ...
0
votes
1answer
538 views

Bank Account program that reads from a file

For my programming class, we have to design a bank account that reads and writes information to a file, which contains information, such as the 10-digit account number, first and last name, middle ...
2
votes
2answers
79 views

Personal Money Movement API

I'm trying to create a simple personal project: I want to give myself bounties for completing tasks that often fester on my todo list. If I complete a task, for example, $5 should automatically move ...
8
votes
3answers
6k views

Is there an API to get bank transaction and bank balance?

I'm using CHASE bank. (Also Bank of America) and I want to get my bank transactions and my balance if I can. Is there an API for that? in PHP or JAVA? If so, please let me know how to get them. Thank ...
0
votes
2answers
664 views

payment gateways for direct transactions with banks

I am new to Payment Gateways and I am really confused in choosing the payment gateway for my website. I have website where user have money in their online account. I need a payment gateway that can ...
6
votes
2answers
752 views

Are there any banks with APIs? [closed]

Do you know of any banks that provide APIs for it's clients in order to check account balance for example?
0
votes
1answer
380 views

PHP bank integration

I have been searching for the past two hours and cant find anything. I am in the UK and I am building a web based application that needs to link in with the users bank to search through deposits. ...
0
votes
1answer
128 views

ssl_error_rx_record_too_long when sending FROM to bank

i am trying to send a to the bank with the details of the payment. The bank tells me that i have to make a POST with action to their URL with ssl: ... (all hidden values) what im trying to do ...
3
votes
3answers
388 views

automatic run php code without user control

I don't know how to call this. if I wrote a php script to calculate an interest for saving account. how can I tell the program to run the script on the end of the day without user monitoring. such ...
3
votes
2answers
1k views

Integrating bank accounts

Is there any API to integrate bank accounts into a .NET application? I am looking to provide the user an ability to pull bank statements into my software. Please suggest. Regards, Suresh Ramanujam.
1
vote
1answer
715 views

generate printable bank giro deposit slip

I am trying to generate a Bank Deposit slip (ideally a PDF) with incremental serial numbers everytime someone clicks and downloads one. Now I know how to generate PDFs etc programmatically but I ...
0
votes
2answers
466 views

Australian bank lookup via BSB, using Javascript

Is there a means of looking up a bank name & branch through Javascript? Perhaps an external service or an complete data-set that can be hosted internally and accessed through JSON?
0
votes
1answer
448 views

Bank angle from up vector and look at vector?

I can't figure out the formula to compute the bank (roll) angle from the up and lookat vectors, though I feel this angle must be measured in tha plan normal to the lookat vector. Any hint appreciated. ...
0
votes
3answers
436 views

iphone development bank payment

I have been hired to develop an iphone app. My customer is non-technical and wants me to take care of everything. So, I want to develop and manage the app within my existing account, but have his ...
3
votes
3answers
882 views

I don't understand how Westpac Payway API and NET works

Been googling all day, reading numerous PDF's and still getting confused with the concepts of sending data to Payway system from Westpac (a bank in Australia). They offer access via API but also give ...
5
votes
6answers
2k views

Why Banks or Financial Companies prefer Oracle than other RDBMS for their “Core” systems?

I'd like to know why most Banks or Financial companies prefer Oracle than other RDBMS for their core systems (the absolutely minimum features that a Bank must support). I found a few answers that ...
5
votes
3answers
1k views

How can I electronically transfer money to another account using Bank Transfer (BACS)

I'm working on a project where we collect payments from users using credit/debit/PayPal payments. The service is taking payments from users on behalf of a 3rd party organisation. Once we take the ...
1
vote
3answers
701 views

Detecting a US Holiday

What's the simplest way to determine if a date is a U.S. bank holiday in Python? There seem to be various calendars and webservices listing holidays for various countries, but I haven't found anything ...

1 2