Hugo, it's not hard writing the callback, but why should I have to write one at all? WorldPay do not offer a solution where you can take all of a customer's details (including Credit Cards), submit it to them and have the transaction validated behind the scenes - other than using Microsoft COM or Java.

Instead, you have to take customer details, redirect them to the WP site, and then wait for a callback to find out whether the payment was successful. Callbacks aren't very robust. What if your web server goes down between taking the order but before the callback approval is received? WP callbacks don't keep "retrying." They get sent once (unless they've changed the system since we last used it). That means the customer has paid, but we have no acknowledgement of it

If you take an all or nothing system - we do everything at our end, including verifying the payment via a web service (SOAP, REST or whatever), either we've taken the order and validated the payment, or we've gone down (not nice, I know, but at least the order isn't in an unknown state)


In reply to Re^4: Business::WorldPay::Junior and last release date by astroboy
in thread Business::WorldPay::Junior and last release date by ghenry

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.