Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Paypal IPN Listener for ASP.NET MVC [closed]

There is quite a few code samples on PayPal GitHub showing how to implement IPN listener in various languages (php, VB, ...). However, there is none for the ASP.NET MVC. Has anybody successfully implemented it? Or is there, similarly to the other code samples, a preferred/oficial way of implementing it?

like image 812
Omu Avatar asked Mar 15 '10 13:03

Omu


1 Answers

A neat video on a simple MVC site structure that includes PayPal IPN:
http://www.asp.net/mvc/videos/mvc-1/aspnet-mvc-storefront/aspnet-mvc-storefront-part-22-restructuring-rerouting-and-paypal

Direct link to his IPN controller
https://mvcsamples.svn.codeplex.com/svn/trunk/Kona.Web/Controllers/PayPalController.cs

MVC/C# Example:
http://www.markstraley.com/Code/PayPalIPN
Thanks @Earlee!

like image 193
used2could Avatar answered Oct 04 '22 15:10

used2could