I created an ASP.NET web page my_ipn_handler.aspx and put the IPN handler C# code in the code-behind file my_ipn_handler.aspx.cs. However, that does not work. The IPN handler does not see any incoming requests at all.
I have a login page on my website. All anonymous users trying to access my website gets redirected to this login page. I suspect that the reason why the IPN handler does not work is that the IPN gets redirected to the login page.
Should I be putting the IPN handler code in a generic handler file, such as my_ipn_handler.ashx, instead of my_ipn_handler.aspx?
Any help would be greatly appreciated.
...
Go to the complete details ...