Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7003987
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T21:08:25+00:00 2026-05-27T21:08:25+00:00

I want to make program to talk between a Bank and POS Terminal Devices

  • 0

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 through bank switching IP address + Port number.

Firstly, let’s assume that I get this output by swiping a credit card at a POS terminal.

%B1234123412341234
^CardUser/John^030510100000019301000000877000000?;1234123412341234=0305101193010877?

Then I categorize this raw data to Track 1, Format B, and Track 2, according to this wiki link.

Track 1 Format B

%
B
1234123412341234
^
CardUser/John
^
0305
101
00000019301000000877000000
?

Track 2

;
1234123412341234
=
0305
101
193010877
?

Then, I will use this code to read those formats using a C# program.

protected void CardReader_OTC(object sender, EventArgs e)
{
    bool CaretPresent = false;
    bool EqualPresent = false;

    CaretPresent = CardReader.Text.Contains("^");
    EqualPresent = CardReader.Text.Contains("=");

    if (CaretPresent)
    {
        string[] CardData = CardReader.Text.Split('^');
        //B1234123412341234^CardUser/John^030510100000019301000000877000000?

        PersonName.Text = FormatName(CardData[1]);
        CardNumber.Text = FormatCardNumber(CardData[0]);
        CardExpiration.Text = CardData[2].Substring(2, 2) + "/" + CardData[2].Substring(0, 2);
    }
    else if (EqualPresent)
    {
        string[] CardData = CardReader.Text.Split('=');
        //1234123412341234=0305101193010877?

        CardNumber.Text = FormatCardNumber(CardData[0]);
        CardExpiration.Text = CardData[1].Substring(2, 2) + "/" + CardData[1].Substring(0, 2);
    }
}

After all of my above code, I think I need to use ISO 8583 messaging protocol to send my data to bank.

My data will include

  1. Track 1 + Track 2 information.
  2. Money amount to withdraw for any kind of purchasing process.

I want 2 of these items to include at ISO message which I will send to the bank.

My questions are:

  1. Is this correct business flow to interact with a bank? I would like to get any suggestions.

  2. Is it possible to combine two of these items in a single ISO message, which will go to bank?

Please give me suggestions, any references, or any web links.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T21:08:26+00:00Added an answer on May 27, 2026 at 9:08 pm

    if you are to use ISO 8583 message format then you need to pass the card information in one of the following fields:

  2. DE2 = Card Number
  3. DE35 = Track II
  4. DE45 = Track I
  5. you can pass DE2 with DE35 or De45 but no one passed both 35 and 45

    next you need to pass the expiry date, which is stored in DE14

    you also need to pass what type of transaction this is, which is the first 2 digits of DE3, and it will be 00 for purchases, 11 for manual cash, the remaining can either be 0000 or if you specify account type then digits 3 and 4 will represent account type, rest should be 00 since there is no To-Account in these transactions

    you need to pass the amount in the field DE4

    you need to pass a trace number in DE11

    fields DE41, DE42 and DE43 are used as well to identify the terminal you are using and the merchant owning such terminal

    the fields DE7, DE12 are used to specify date/time of transaction

    Field DE49 used to specify currency of transaction

    Field DE18 is important to specify the Merchant Category Code of the POS terminal you use, which is what type of activity this merchant follow

    DE19 can be used to specify the country

    DE25 for the entry mode (are you using chip, magnetic stripe, manual entry?)

    this is the minimum you should follow, however, it depends on the acquiring bank, what are the specifications they require minumum

  • 0
  • Reply
  • Share
    Share
    • Share on Facebook
    • Share on Twitter
    • Share on LinkedIn
    • Share on WhatsApp
    • Report

Sidebar

Related Questions

I want to make some C++ program and I'm using function popen here to
i want to make an program using web browser so i have make Account
i want to make a program which block any file(like autorun.inf),so that no other
I want to make a program using Qt that can access the contacts list
I want to make a program in python using pygtk, which would execute my
I want to make a program that will simulate a user browsing a site
I want to make a program that will read some number in string format
I want to make a program in C# which will go/login and do stuff
I want to make a program work and compile in both WIN\Linux . I
I want to make a program for a restaurant, to hold foods and store

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.