Questions tagged [bank]

169 questions
0
votes
1 answer

Bank account transfer with threads

I have to do some bank account transfers with threads and benchmarking the different results. I think that the time of syncronized solution with general lock has to be worse than one lock per account solution. Here is my implementation with general…
0
votes
0 answers

Connecting a cash register to a bank terminal with LUA

I amdevelopping a script with LUA that have to make communication between a cash register and a bank terminal via TCP IP connection. I would like to ask which TCP IP number port to mention in code? Thanks in advance.
0
votes
1 answer

Read information of the German EC/Giro Card through NFC in Android

Does anybody know a way on how to read the data of a German Giro Card/EC Card through NFC? I have been trying it with EMV Card Readers, and somehow the succeed on reading the Card Number, but aren't able to read the bank Identification Code (BIC) /…
0
votes
2 answers

Tomcat is not starting after installing Mifos on Windows using Xampp. Mifos doesn't work, what is wrong?

I am trying to install Mifos in Windows 10 using Xampp 5.6.8. I tried all the steps given in Mifos documentation but now Tomcat server does not start. What did I do wrong?
0
votes
1 answer

Create a simple bank with accounts in Java

I have two interfaces Bank and Account which have some functions: public interface Bank { String createAccount(String owner) throws IOException; boolean closeAccount(String number) throws IOException; Set getAccountNumbers()…
KIA
  • 15
  • 5
0
votes
2 answers

Python ATM Machine simplifying and to use further users

def transfer(): print ("You've chosen to transfer money.") transAccFrom = int(input("From which account you want to transfer?\n1.Jack 2.Smith 3.Suzy 4.Craig 5.Vic :")) transMoney = float(input("How much you want to tranfer?")) …
0
votes
1 answer

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 is send all the info with a header(location:…
0
votes
2 answers

How to make an array of objects that creates new accounts when called?

I need help on a programming assignment. The class of BankAccount already exists and works as it should. I have never been asked to place objects into arrays before, and am having trouble doing so. I have started with the following: public class…
Brenton K
  • 7
  • 2
0
votes
1 answer

How do i make a registration form whic stores useres data in .txt file in python?

I am working on a project which I am spouse to create a Bank system using python. I have done the program and it works perfectly the only problem that I need help with is that how to create a registration form which will store user data for sign up,…
Fouad
  • 3
  • 2
0
votes
1 answer

Why isn't the entered money incrementing onto the previous balance? (in Java)

I am creating a bankteller loop java code. I am trying to ask the user for what amount of money they would like to deposit into their account. I can get this to work once. For example, they will enter in $20 the first time. Then they will decide to…
Joe
  • 31
  • 3
0
votes
3 answers

Bank cash (deposit and withdrawal) - for educational purposes

i have a problem on my program. and my problem is that i cannot minus my withdrawal from my deposit value. code below: public static void main(String[] args) { double cash; boolean more = true; Deposite dep = new Deposite(); …
RJ Berin
  • 13
  • 7
0
votes
4 answers

Calling a superclass method from a subclass

I'm modelling a bank account with a superclass Account and a subclass SavingsAccount that can't be overdrawn. The makeWithdrawal() method, when called from the main class, should check if the withdrawal is greater than the balance and prompt for…
user6150036
0
votes
1 answer

Login bank account using curl + php

I'm using curl to load and login in my bank account because I need to automatize some task. I've done some scrapping before that required login but I must be missing something this time because I can't login. This is the website I want to…
0
votes
1 answer

Getting stuck in a loop?

I am making a bank machine code for a project and whenever you log in it gives an error. The part of the code that is doing it is this: if(pincheck == pin){ loggedin = true; pincheck = 0; do{ …
0
votes
0 answers

Bank statement splitting

Base DataOutput requiredI have a bank statement with multiple accounts rolled into one excel sheet. I need to break the sheet into multiple sheets based on the account number. The columns are something like this (commas indicating change in column)-…