DigiOz Multimedia

DigiOz Support Forums

HELP NEEDED FOR COMMUNICATION WITH INGENICO I3070

Everything .NET Related, including VB.NET, C#, ASP.NET, Windows and Webservices using .NET Technology

Moderator: Pete

HELP NEEDED FOR COMMUNICATION WITH INGENICO I3070

Postby ftajammul » Mon Feb 04, 2008 5:38 am

Dear Pete

I am currently assigned a task to communicate with ingenico i3070. Searched everywhere but could not find a word on how to communicate with this device. The Ingenico support just sent a CPX emulation guide and nothing else.

Just got a break when saw a post on your blog that you recently did it with POS for .NET. Can you please guide me on how to start and establish a communication?

A Sample code will be highly appropriated.

Thanks in Advance.

Faisal.
ftajammul
 
Posts: 1
Joined: Mon Feb 04, 2008 5:18 am

Re: HELP NEEDED FOR COMMUNICATION WITH INGENICO I3070

Postby Pete » Mon Feb 04, 2008 9:50 am

Hello Faisal,

Good to hear that people read my blogs! I know it can be quite frustrating to have to deal with this issue, so I will do my best to help.

Attached is a VB.NET 1.1 Sample Windows Form Project I wrote containing both a VB.NET Class I wrote and a sample usage of it to communicate with both Ingenico i3070 and i6550 Credit Card Readers. Make sure to first download the POS for .NET 1.1 from the following link:

http://www.microsoft.com/downloads/details.aspx?FamilyID=6025B728-EC06-48F9-BC80-C38B2A27A242&displaylang=en
Attachments
Pos for .NET 1.1 Sample.zip
Sample Windows .NET Form Application to read credit card from Ingenico i3070 and 6550
(40.22 KiB) Downloaded 177 times
DigiOz Webmaster
http://www.digioz.com
User avatar
Pete
Site Admin
 
Posts: 380
Joined: Thu Sep 29, 2005 1:48 pm
Location: Chicago, IL

Re: HELP NEEDED FOR COMMUNICATION WITH INGENICO I3070

Postby aaldrich » Fri Feb 22, 2008 6:51 pm

Pete,

Thank you so much for the example. I purchased a i6550 USB model but your code says it is not present. I looked in the code where you loop through looking for devices

Code: Select all
For Each loDevice In ccDevices
                    ' Create Line Display Object ----------------------------------------------------
                    If loDevice.Type = "LineDisplay" And loDevice.ServiceObjectName = "Ing6XXX" Then
                        coDeviceLD = loDevice
                    End If

                    ' Create MSR Object -------------------------------------------------------------
                    If loDevice.Type = "Msr" And loDevice.ServiceObjectName = "Ing6XXX" Then
                        coDeviceMSR = loDevice
                    End If


All I have are some Microsoft Simulators. I'm just curious why mine doesn't show up and yours did. Were you using the USB model?

Thank you for providing us with all the information you have found out so far.
aaldrich
 
Posts: 2
Joined: Fri Feb 22, 2008 6:47 pm

Re: HELP NEEDED FOR COMMUNICATION WITH INGENICO I3070

Postby Pete » Sat Feb 23, 2008 12:08 am

aaldrich wrote:Pete,

Thank you so much for the example. I purchased a i6550 USB model but your code says it is not present. I looked in the code where you loop through looking for devices

Code: Select all
For Each loDevice In ccDevices
                    ' Create Line Display Object ----------------------------------------------------
                    If loDevice.Type = "LineDisplay" And loDevice.ServiceObjectName = "Ing6XXX" Then
                        coDeviceLD = loDevice
                    End If

                    ' Create MSR Object -------------------------------------------------------------
                    If loDevice.Type = "Msr" And loDevice.ServiceObjectName = "Ing6XXX" Then
                        coDeviceMSR = loDevice
                    End If


All I have are some Microsoft Simulators. I'm just curious why mine doesn't show up and yours did. Were you using the USB model?

Thank you for providing us with all the information you have found out so far.


Hello aaldrich,

I actually also did my testing with the i3070 using the USB connection. But there is something about the i3070 default factory setting that defaults to COM communication, even if you hook it up through USB. I ended up changing a lot of the switches based on the developer specifications that Ingenico had on their site to get it to run through USB instead of COM. You have to go through the setup menu on the actual device to do this.

See if you can configure it using the above description. If not I can probably go back and dig up some of my old logs to give you a more detailed description on how to do this.
DigiOz Webmaster
http://www.digioz.com
User avatar
Pete
Site Admin
 
Posts: 380
Joined: Thu Sep 29, 2005 1:48 pm
Location: Chicago, IL

Re: HELP NEEDED FOR COMMUNICATION WITH INGENICO I3070

Postby aaldrich » Sat Feb 23, 2008 12:38 am

OK, I got it figured out I think. I had to find the OPOS driver for the i6550, and believe me its not easy. Ingenico has been next to useless in giving it to me. I finally tracked it down here. http://www.posplus.com/downloads/Ingenico I hope that helps anyone that was having trouble not seeing the 6xxx in their POS list. I'll keep you updated on my progress Pete thx again :)
aaldrich
 
Posts: 2
Joined: Fri Feb 22, 2008 6:47 pm

Re: HELP NEEDED FOR COMMUNICATION WITH INGENICO I3070

Postby Pete » Sat Feb 23, 2008 12:43 am

aaldrich wrote:OK, I got it figured out I think. I had to find the OPOS driver for the i6550, and believe me its not easy. Ingenico has been next to useless in giving it to me. I finally tracked it down here. http://www.posplus.com/downloads/Ingenico I hope that helps anyone that was having trouble not seeing the 6xxx in their POS list. I'll keep you updated on my progress Pete thx again :)


Ah, ok! I kind of assumed you had already installed the OPOS driver. I guess I should have asked about that first. :)

Let me know how it goes with the rest of the project. I remember having another bump or two when I was doing it.
DigiOz Webmaster
http://www.digioz.com
User avatar
Pete
Site Admin
 
Posts: 380
Joined: Thu Sep 29, 2005 1:48 pm
Location: Chicago, IL

Re: HELP NEEDED FOR COMMUNICATION WITH INGENICO I3070

Postby Pete » Mon Sep 29, 2008 10:36 am

Just in case anyone else needs the driver for Ingenioc i6550 or i3070 series, I am attaching them in a zip file bellow.

Thanks,
Pete

i3070 driver.zip
Ingenico i3070 Driver Installer
(3.28 MiB) Downloaded 187 times


i6550 driver.zip
Ingenico i6550 Driver Installer
(4.15 MiB) Downloaded 128 times
DigiOz Webmaster
http://www.digioz.com
User avatar
Pete
Site Admin
 
Posts: 380
Joined: Thu Sep 29, 2005 1:48 pm
Location: Chicago, IL

Re: HELP NEEDED FOR COMMUNICATION WITH INGENICO I3070

Postby David » Sat May 01, 2010 9:24 am

Hello, Pete
I am new for i3070 and very happy to read your Posts, it help me a lot.but when I try to download your sample code,<Pos for .NET 1.1 Sample.zip>,<i3070 driver.zip>, windows say "The Compressed(zipped) folder is invalid or corrupted" , I try to open it in different PCs, but same.
Would you please help me to make it work?

Thank you in advance.
David
David
 
Posts: 2
Joined: Sat May 01, 2010 8:40 am

Re: HELP NEEDED FOR COMMUNICATION WITH INGENICO I3070

Postby Pete » Mon May 03, 2010 3:30 pm

Yeah, it looks like over time those zip files have become corrupt. You can try this site:

http://www.posplus.com/downloads/Ingenico/

Else maybe Ingenico finally can provide them. :)

I will also look in my backups for you to see if I have those files elsewhere and will let you know.

Pete
DigiOz Webmaster
http://www.digioz.com
User avatar
Pete
Site Admin
 
Posts: 380
Joined: Thu Sep 29, 2005 1:48 pm
Location: Chicago, IL

Re: HELP NEEDED FOR COMMUNICATION WITH INGENICO I3070

Postby David » Sat May 08, 2010 10:56 pm

Thank you
David
 
Posts: 2
Joined: Sat May 01, 2010 8:40 am


Return to .NET Programming

Who is online

Users browsing this forum: No registered users and 1 guest

cron