Questions tagged [openiso8583.net]

A .NET ISO 8583 message builder

An open source .NET ISO 8583 message builder.

https://bitbucket.org/openisoj/openiso8583.net

31 questions
4
votes
2 answers

ISO8583: Appropriate value for Field 43 Card acceptor name/location

Hey In 43'th field of ISO-8583 package which is Card acceptor name/location (1-23 address 24-36 city 37-38 state 39-40 country), should I assign value ? and what is the proper value?
Siavash
  • 2,813
  • 4
  • 29
  • 42
3
votes
2 answers

Convert message from ASCII to HEX ISO8583.net

my billing provider needs to get the message in HEX and not in ASCII, for example, I've sent a 800 message and the stream was: 42 00 30 38 30 30 a2 38 00 00 00 80 80 00 04 00 00 00 00 00 00 00 39 30 30 30 30 30 30 34 30 32 31 34 33 31 31 38 31 37 33…
user1308550
  • 31
  • 1
  • 2
3
votes
1 answer

Bitmap and how to populate with the relevant values

I am trying to implement a solution with the ISO8583Net dll and can't establish how to populate the various Bitmap field values. Based on the ISO8583 doc I can see that it needs to be included as part of field one within the message (application…
3
votes
1 answer

Unpacking jPOS ISO8583

I am having this error when I am generating transaction with Magnetic stripe card. Could you suggest what is the problem here? org.jpos.iso.IFB_LLLCHAR: Problem unpacking field 54…
Stn Bat
  • 31
  • 3
2
votes
1 answer

Track2 in BCD - 'D' character

I'm supposed to send Data-Element 35 (Track2: ".....=.....") in BCD format. The '=' character is to be replaced with a 'D'. Isn't 0x0D illegal in BCD? But, the customer is always right... so, how can it be done? I can add the following static…
Rami Rosenbaum
  • 467
  • 5
  • 18
2
votes
1 answer

ISO 8583 Rev 93 Alphabetic & Numeric Characters Packing/Unpacking

I am faced with the task of sending ISO 8583 Rev 93 messages and am using openiso8583.net. The company that is consuming my messages gave message samples and I am unclear about the following Field attributes: Special Characters Alphabetic & Numeric…
aelstonjones
  • 382
  • 2
  • 8
  • 25
2
votes
1 answer

OpenISO8583.Net BCD Formatted Message Type

I am learning how to use the OpenISO8583.Net code. I have derived a new ISO8583 class from the original one. One of the differences in my new class is that the Message Type field is going to be [Numeric, BCD]; so I wrote this as part of the class…
Eliseo
  • 1,547
  • 1
  • 15
  • 14
1
vote
1 answer

Extending/Modifying OpenIso8583.Net

I'm using the excellent OpenIso8583Net to send/receive ISO messages. However, since every organization has its own definition and customization, I want to be able to customoize the format with as little touch to the projects' source as possible to…
Kamyar
  • 18,639
  • 9
  • 97
  • 171
1
vote
1 answer

How do I change the format of a field in an OpenIso8583.Net message

For example, the default format for field 128 in OpenIso8583Rev93 is Fixed Hex 8. How would I change it to Fixed Hex 16.
John Oxley
  • 14,698
  • 18
  • 53
  • 78
1
vote
1 answer

OpenIso8583Net field 95 conversion to human readable format?

I am very new to binary conversions. I have Field 95 coming in below format - total 42 bytes. below field represent $400. Can you please help, how can i convert it to $400 value? 000000040000000000000000000000000000000000 Template definition: …
winterishere
  • 350
  • 1
  • 5
  • 21
1
vote
1 answer

WCF - How to serialize and deserialize in ISO8583?

I'm working on a financial application that use WCF Services to communicate to clients. I want to connect my application to a global bank network in my country and I must use ISO8583 Messages to connect to it. is WCF suitable for this scenario? how…
ArMaN
  • 2,306
  • 4
  • 33
  • 55
1
vote
1 answer

Asking sample code for ISO 8583 verifone vx520

I want to know the sample code for sending message to server and get back response to verifone vx520 terminal using ISO 8583.
Manish T
  • 23
  • 5
1
vote
2 answers

Validation of fields on indexers

I'm creating a new message, by setting the indexers, like: Iso8583 isoMsg = new Iso8583(); isoMsg[field] = value; I noticed that I'm not receiving any exceptions; following the code I've seen that the validator is not running when I'm setting the…
Federico
  • 576
  • 4
  • 20
1
vote
1 answer

BCD/Binary odd length-indicator error

I'm formatting a BCD field: msg[60] = FieldDescriptor.BcdVar(3, 125, Formatters.Bcd); The lib throws an exception when packing the message. It's straight-forward to reproduce. I found that in both BCD and Binary Var, when the length-indicator is…
Rami Rosenbaum
  • 467
  • 5
  • 18
1
vote
2 answers

Create an ISO 8583 message

I trying to create an ISO 8583 message using the openiso8583 library It did not have field no 17 (Date, capture) so I extended the class. Iso8583Finacle msg = new Iso8583Finacle(); msg.MessageType =…
Chandra Eskay
  • 2,163
  • 9
  • 38
  • 58
1
2 3