Hi everyone,
I am trying to configure the PayPal implementation in the WebAPI project c#. The payments are working fine, I am successfully creating payments, as my test facilitator and test buyer accounts are being debited and credited fine.
However, the paychecker.aspx page which is the notify_url does not ever seem to be reached, as my VS debugger never steps into the code. After I make a purchase on PayPals page, I press the "Return to merchant" button and am immediately taken back to the return Thank you page. There is some Paypal validation code in the notify_url which doesn't seem to execute.
I haven't changed the input tag in the payment.aspx page, and I've configured the CheckScript variable to a valid url.
<input type="hidden" name="notify_url" value="<%= PaymentSettings.CheckScript + "?paypal=1" %>"/>
public const string CheckScript = "http://localhost:2103/paychecker.aspx";
Is there something more that needs to be done?