You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Based upon a sample project, I have created a payment connector (IPaymentProcessor class) which needs to integrate with a 3rd party provider for external gift cards using a WSDL service (for our POS/Store Commerce app).
Everything works fine for the actions "Add to gift card", "Gift card balance" and "Issue gift card", but the action to pay with a gift card is giving me the error message "The payment terminal is not configured to process the gift card". In the event viewer it says "Tender payment operation failed for payment method operation 214 (pay gift card)".
Untill now I seem to have enough on this IPaymentprocessor class, and it also seems to make sense because I don't have a payment device or terminal, I only need to talk to a 3rd party service using WCF (WSDL). I now explored the payment device sample project from Microsoft and specifically the class that implements INamedRequestHandler. Isn't this part of my problem, that I don't use the INamedRequestHandler?
Do you think that could solve my problem? I then just need to know what exactly I need to implement concerning "SupportedRequestTypes" and related methods to make it work for paying with a gift card.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi,
Based upon a sample project, I have created a payment connector (IPaymentProcessor class) which needs to integrate with a 3rd party provider for external gift cards using a WSDL service (for our POS/Store Commerce app).
Everything works fine for the actions "Add to gift card", "Gift card balance" and "Issue gift card", but the action to pay with a gift card is giving me the error message "The payment terminal is not configured to process the gift card". In the event viewer it says "Tender payment operation failed for payment method operation 214 (pay gift card)".
Untill now I seem to have enough on this IPaymentprocessor class, and it also seems to make sense because I don't have a payment device or terminal, I only need to talk to a 3rd party service using WCF (WSDL). I now explored the payment device sample project from Microsoft and specifically the class that implements INamedRequestHandler. Isn't this part of my problem, that I don't use the INamedRequestHandler?
Do you think that could solve my problem? I then just need to know what exactly I need to implement concerning "SupportedRequestTypes" and related methods to make it work for paying with a gift card.
Beta Was this translation helpful? Give feedback.
All reactions