Search found 17 matches

by dotnetguy
Wed Jan 09, 2019 2:17 pm
Forum: Milan / Paylink Interface Support
Topic: PaySpecific won't start dispensing
Replies: 2
Views: 7188

PaySpecific won't start dispensing

I use PaySpecific to control precisely what dispenser to use and how many units to dispense. Problem is when one dispenser doesn't have money in it and my program moves to next dispenser, then nothing gets even tried to be dispensed. However problem seems to be solved by adding at least ~100ms delay...
by dotnetguy
Wed Nov 07, 2018 1:11 pm
Forum: Milan / Paylink Interface Support
Topic: Problem with downloading coin definitions to SR5i Eagle
Replies: 2
Views: 7430

Problem with downloading coin definitions to SR5i Eagle

Hello. We are having trouble preparing SR5i Eagle coin acceptor. We would like to make it accept 0.20 EUR, 0.50 EUR, 1.00 EUR and 2.00 EUR. So far we have tried to use "Paylink coin/note download" software (PayLinkDownloadWin.exe) with SR5FileSet.exe, but nothing doesn't seem to work. Down...
by dotnetguy
Thu May 03, 2018 7:01 am
Forum: Milan / Paylink Interface Support
Topic: Some hoppers disappeared during one transaction
Replies: 7
Views: 14250

Re: Some hoppers disappeared during one transaction

I'm glad that you had heureka moment :D

Indeed. Those Acceptor/Dispenser writes are not waited, they are pushed as fast as possible.
Paylink is inevitably a shared state.
by dotnetguy
Wed Apr 25, 2018 1:02 pm
Forum: Milan / Paylink Interface Support
Topic: Some hoppers disappeared during one transaction
Replies: 7
Views: 14250

Re: Some hoppers disappeared during one transaction

The fact that you got status -6 for the Payout implies that all 4 50p hoppers were inhibited at this time (-6 is Paylink reporting it was unable to find a hopper to issue a payout, either because it doesn't exist or it's inhibited) I understand. It is just weird that when application found that dis...
by dotnetguy
Mon Apr 23, 2018 1:14 pm
Forum: Milan / Paylink Interface Support
Topic: Some hoppers disappeared during one transaction
Replies: 7
Views: 14250

Re: Some hoppers disappeared during one transaction

I'm afraid that we don't have several hours of logs, but I emailed you what we have. What do you mean by "not running". Can last pay status be "-6 no hopper" when hopper loses power / is disconnected? Can last pay status be "-6 no hopper" when AESImehi.Payout(amount) is...
by dotnetguy
Wed Apr 18, 2018 12:22 pm
Forum: Milan / Paylink Interface Support
Topic: Some hoppers disappeared during one transaction
Replies: 7
Views: 14250

Some hoppers disappeared during one transaction

Hello. Our setup: Kiosk. It sells tokens. Paylink, 6 hoppers, note recycler, eagle acceptor. Standard.cfg Hopper at 3 Value 100 // 1 EUR Hopper at 4 Value 50 // 0,50 EUR Hopper at 5 Value 50 // Tokens Hopper at 6 Value 200 // 2 EUR Hopper at 7 Value 50 // Tokens Hopper at 8 Value 50 // Tokens We had...
by dotnetguy
Thu Oct 05, 2017 12:25 pm
Forum: Milan / Paylink Interface Support
Topic: Inhibited dispensers are sometimes used by AESImhei.Payout()
Replies: 3
Views: 8001

Re: Inhibited dispensers are sometimes used by AESImhei.Payo

Ok. Thanks.

Due to recent requirements I started to use SetDispenseQuantity and PaySpecific for token hoppers.

If that issue still comes up, I'll hope to have paylink logs to present.
by dotnetguy
Fri Sep 29, 2017 1:41 pm
Forum: Milan / Paylink Interface Support
Topic: Inhibited dispensers are sometimes used by AESImhei.Payout()
Replies: 3
Views: 8001

Inhibited dispensers are sometimes used by AESImhei.Payout()

Correct me if I'm wrong, but I have understood that when dispenser is inhibited then paylink should never be able to dispense from it. However it has happened more than once with our kiosk. At this moment we don't have paylink's logs for that situation, because they seems to have a short life span b...
by dotnetguy
Tue Aug 29, 2017 1:25 pm
Forum: Milan / Paylink Interface Support
Topic: AesImhei[64].Net.dll as nuget package
Replies: 3
Views: 7591

Re: AesImhei[64].Net.dll as nuget package

nuget.org is a public nuget package provider. There seems to be some packages listed with your company name. We provide the complete source package of Aesimhei, so it would be open to you to create a nuget package. If you wish to undertake the setup on our behalf, then we would have no objections t...
by dotnetguy
Thu Aug 24, 2017 12:37 pm
Forum: Milan / Paylink Interface Support
Topic: AesImhei[64].Net.dll as nuget package
Replies: 3
Views: 7591

AesImhei[64].Net.dll as nuget package

Do you have plans to provide AesImhei[64].Net.dll as nuget package?

It would simplify to consume that library.

Currently I have to drag that dll to our git repo, but if it were a nuget package it would be provided when needed. It would also allow to select between different versions.
by dotnetguy
Wed Aug 16, 2017 12:34 pm
Forum: Milan / Paylink Interface Support
Topic: How to know if paylink's interface is enabled?
Replies: 3
Views: 7978

Re: How to know if paylink's interface is enabled?

Indeed. Using "Exit button" vs closing window or alt+F4 made a difference.
It's something to keep in mind when using CheckOperation(). Thanks.
by dotnetguy
Wed Aug 16, 2017 8:43 am
Forum: Milan / Paylink Interface Support
Topic: How to know if paylink's interface is enabled?
Replies: 3
Views: 7978

How to know if paylink's interface is enabled?

Here is my code static void Main(string[] args) { var open = AESImhei.OpenMHE(); if (open != 0) { throw new IOException($"OpenMHE returned {open}."); } AESImhei.EnableInterface(); var initialValue = AESImhei.CurrentValue(); var latestValue = initialValue; while(latestValue == initialValue)...
by dotnetguy
Tue Aug 15, 2017 8:24 am
Forum: Milan / Paylink Interface Support
Topic: Are sequence numbers same as indexes?
Replies: 1
Views: 6337

Are sequence numbers same as indexes?

I want to use SetDispenseQuantity. One parameter is called "Index" (integer). From docs: Index This parameter specifies the dispenser that is having the count set Where can I get that value? It seems that it is the same as "number" in ReadDispenserDetails(number:int, snapshot:AES...
by dotnetguy
Tue Aug 08, 2017 8:32 am
Forum: Milan / Paylink Interface Support
Topic: Describing hoppers besides their nominal value
Replies: 2
Views: 6392

Re: Describing hoppers besides their nominal value

I appreciate your reply.

Seems that there isn't a elegant solution for my problem. I'll consider your suggestions.